summaryrefslogtreecommitdiff
path: root/src/gui/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/window.h')
-rw-r--r--src/gui/window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/window.h b/src/gui/window.h
index a48d3851..c1027518 100644
--- a/src/gui/window.h
+++ b/src/gui/window.h
@@ -177,20 +177,20 @@ class Window : public gcn::Window
* Don't forget to set these default values and resizable before
* calling this function.
*/
- void loadWindowState();
+ virtual void loadWindowState();
/**
* Set the default win pos and size.
* (which can be different of the actual ones.)
*/
- void setDefaultSize(int defaultX, int defaultY,
+ virtual void setDefaultSize(int defaultX, int defaultY,
int defaultWidth, int defaultHeight);
/**
* Reset the win pos and size to default.
* Don't forget to set defaults first.
*/
- void resetToDefaultSize();
+ virtual void resetToDefaultSize();
protected:
gcn::Container *chrome; /**< Contained container */