MSVS2010 build fix.

This commit is contained in:
2015-11-19 14:47:40 +01:00
parent bfff174db8
commit 30a6f57b19
3 changed files with 4 additions and 4 deletions
-2
View File
@@ -143,8 +143,6 @@ public:
}
private:
friend class Comparator;
QList<QSharedPointer<T> > m_list;
};
+1 -1
View File
@@ -15,7 +15,7 @@ public:
virtual void showForm(IForm *formWidget) = 0;
};
class DefaultFormHandler : public IFormHandler
class CORESHARED_EXPORT DefaultFormHandler : public IFormHandler
{
public:
DefaultFormHandler();
+3 -1
View File
@@ -3,7 +3,9 @@
#include <QWidget>
class IForm : public QWidget
#include "core_global.h"
class CORESHARED_EXPORT IForm : public QWidget
{
Q_OBJECT