diff options
Diffstat (limited to 'client/macrowindow.h')
-rw-r--r-- | client/macrowindow.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/client/macrowindow.h b/client/macrowindow.h index 65fcbf1..f92b4c0 100644 --- a/client/macrowindow.h +++ b/client/macrowindow.h @@ -36,13 +36,15 @@ class LUA; class Widget; +class MacroDrawer; class MacroWindow : public Collapser { Q_OBJECT public: MacroWindow(NetCom &netcom, QString templ, - bool is_static = false, bool compact = false, - QScrollArea *scrollarea = NULL); + bool is_static, bool compact, + QScrollArea *scrollarea, + MacroDrawer *drawer); ~MacroWindow(); LUA *lua; void update(QDomNode &xml_doc); @@ -88,6 +90,8 @@ private: bool active; bool is_static; + + MacroDrawer *drawer; }; #endif/*__PRACRO_MACROWINDOW_H__*/ |