mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Changed: #1193 Core::IContext does not factory.
This commit is contained in:
parent
4430fccd4a
commit
60560601ba
2 changed files with 24 additions and 19 deletions
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include "qnel_widget.h"
|
||||
#include "painter_dock_widget.h"
|
||||
#include <QtGui/QMenu>
|
||||
|
||||
ZonePainterMainWindow::ZonePainterMainWindow(QWidget *parent) :
|
||||
QMainWindow(parent),
|
||||
|
|
|
@ -79,7 +79,10 @@ class CZonePainterContext: public Core::IContext
|
|||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
CZonePainterContext(QObject *parent = 0): IContext(parent) {}
|
||||
CZonePainterContext(QObject *parent = 0): IContext(parent)
|
||||
{
|
||||
m_zonePainterMainWindow = new ZonePainterMainWindow();
|
||||
}
|
||||
virtual ~CZonePainterContext() {}
|
||||
|
||||
virtual QString id() const
|
||||
|
@ -96,8 +99,9 @@ public:
|
|||
}
|
||||
virtual QWidget *widget()
|
||||
{
|
||||
return new ZonePainterMainWindow();
|
||||
return m_zonePainterMainWindow;
|
||||
}
|
||||
ZonePainterMainWindow *m_zonePainterMainWindow;
|
||||
};
|
||||
|
||||
} // namespace Plugin
|
||||
|
|
Loading…
Reference in a new issue