aboutsummaryrefslogtreecommitdiff
path: root/gui/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/object.h')
-rw-r--r--gui/object.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/gui/object.h b/gui/object.h
index 2bdff3f76c..01046bd668 100644
--- a/gui/object.h
+++ b/gui/object.h
@@ -29,7 +29,6 @@ namespace GUI {
class CommandReceiver;
class CommandSender;
-class InterfaceManager;
class CommandReceiver {
friend class CommandSender;
@@ -66,7 +65,6 @@ protected:
Common::String _name;
Widget *_firstWidget;
- InterfaceManager *_GUI;
public:
GuiObject(int x, int y, int w, int h) : _x(x), _y(y), _w(w), _h(h), _name(""), _firstWidget(0) { }
@@ -85,7 +83,6 @@ public:
virtual void draw() = 0;
virtual void reflowLayout();
- virtual void setInterfaceManager(InterfaceManager *manager) { _GUI = manager; }
protected:
virtual void releaseFocus() = 0;