diff options
Diffstat (limited to 'src/gui/window.h')
-rw-r--r-- | src/gui/window.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/window.h b/src/gui/window.h index 034c99da..651a8a4e 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -99,6 +99,11 @@ class Window : public gcn::Window virtual void updateContentSize() {} /** + * Sets the size of this window. + */ + void setSize(int width, int height); + + /** * Sets the width of this window. */ void setWidth(int width); @@ -318,7 +323,6 @@ class Window : public gcn::Window std::string mConfigName; /**< Name used for saving window-related data */ bool mShowTitle; /**< Window has a title bar */ bool mModal; /**< Window is modal */ - bool mResizable; /**< Window can be resized */ bool mCloseButton; /**< Window has a close button */ bool mSticky; /**< Window resists minimization */ int mMinWinWidth; /**< Minimum window width */ |