aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/ui
diff options
context:
space:
mode:
authorTobia Tesan2013-09-20 13:58:17 +0200
committerTobia Tesan2013-09-21 23:22:23 +0200
commit252e0c17ec711c13ac5ef3bd6af68646275d63d6 (patch)
tree00d2c1147f6af30da1b54d8db1a62531e653fe4b /engines/wintermute/ui
parentaafe8c1f0d45aef7429331b5e00f74d2e42b0ce7 (diff)
downloadscummvm-rg350-252e0c17ec711c13ac5ef3bd6af68646275d63d6.tar.gz
scummvm-rg350-252e0c17ec711c13ac5ef3bd6af68646275d63d6.tar.bz2
scummvm-rg350-252e0c17ec711c13ac5ef3bd6af68646275d63d6.zip
WINTERMUTE: Make _parentNotify private in UIObject
Diffstat (limited to 'engines/wintermute/ui')
-rw-r--r--engines/wintermute/ui/ui_object.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/ui/ui_object.h b/engines/wintermute/ui/ui_object.h
index 6d1f6ae895..4132d9576a 100644
--- a/engines/wintermute/ui/ui_object.h
+++ b/engines/wintermute/ui/ui_object.h
@@ -44,7 +44,7 @@ public:
bool focus();
virtual bool handleMouse(TMouseEvent event, TMouseButton button);
bool isFocused();
- bool _parentNotify;
+
DECLARE_PERSISTENT(UIObject, BaseObject)
UIObject *_parent;
virtual bool display() override { return display(0, 0); }
@@ -101,7 +101,7 @@ protected:
int32 _width;
int32 _height;
bool _canFocus;
-
+ bool _parentNotify;
};
} // End of namespace Wintermute