diff options
-rw-r--r-- | engines/wintermute/ui/ui_object.h | 4 |
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 |