Add missing EXPORT directives for new SubWindow class

This commit is contained in:
Colin Wallace
2015-06-15 23:41:08 +00:00
parent 908591ba7d
commit be564efb1e
2 changed files with 4 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ public:
void addSpacingToToolBar( int _size );
// wrap the widget with a window decoration and add it to the workspace
SubWindow* addWindowedWidget(QWidget *w, Qt::WindowFlags windowFlags=0);
EXPORT SubWindow* addWindowedWidget(QWidget *w, Qt::WindowFlags windowFlags=0);
///

View File

@@ -32,13 +32,15 @@
#include <QMdiSubWindow>
#include <QRect>
#include "export.h"
class QMoveEvent;
class QResizeEvent;
class QWidget;
class SubWindow : public QMdiSubWindow
class EXPORT SubWindow : public QMdiSubWindow
{
Q_OBJECT
public: