diff options
Diffstat (limited to 'gui/object.h')
-rw-r--r-- | gui/object.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/object.h b/gui/object.h index c9fe097a06..5067ab8354 100644 --- a/gui/object.h +++ b/gui/object.h @@ -59,11 +59,12 @@ class GuiObject : public CommandReceiver { protected: int16 _x, _y; uint16 _w, _h; + Common::String _name; Widget *_firstWidget; public: - GuiObject(int x, int y, int w, int h) : _x(x), _y(y), _w(w), _h(h), _firstWidget(0) { } + GuiObject(int x, int y, int w, int h) : _x(x), _y(y), _w(w), _h(h), _firstWidget(0), _name("") { } GuiObject(Common::String name); virtual int16 getAbsX() const { return _x; } |