summaryrefslogtreecommitdiff
path: root/dgl/Window.hpp
diff options
context:
space:
mode:
authorfalkTX <falktx@gmail.com>2014-05-15 20:49:30 +0100
committerfalkTX <falktx@gmail.com>2014-05-15 20:49:30 +0100
commited61894c516c765f17b9f746e11208f4304f51fa (patch)
tree1bd22492c65d3010b5a6742ef15039caae010ade /dgl/Window.hpp
parented0d3be276d8b0beaa28dc38eeb79a86db16e425 (diff)
Rework StandaloneWindow class
Diffstat (limited to 'dgl/Window.hpp')
-rw-r--r--dgl/Window.hpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/dgl/Window.hpp b/dgl/Window.hpp
index 60c2587f..80e74bc3 100644
--- a/dgl/Window.hpp
+++ b/dgl/Window.hpp
@@ -76,9 +76,10 @@ private:
PrivateData* const pData;
friend class App;
friend class Widget;
+ friend class StandaloneWindow;
- void _addWidget(Widget* const widget);
- void _removeWidget(Widget* const widget);
+ virtual void _addWidget(Widget* const widget);
+ virtual void _removeWidget(Widget* const widget);
void _idle();
DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(Window)