diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 01:59:35 +0100 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-03-27 01:59:35 +0100 |
commit | 1e7dba1ee2f90e927298d5f6a7856ad5006ff789 (patch) | |
tree | 2fa94e2a0887b4f60da7d2bda95fb4b1886c1474 /src/gui/window.h | |
parent | 1715d0afe44a282a356ca88e47c92ec556f094dd (diff) | |
download | mana-1e7dba1ee2f90e927298d5f6a7856ad5006ff789.tar.gz mana-1e7dba1ee2f90e927298d5f6a7856ad5006ff789.tar.bz2 mana-1e7dba1ee2f90e927298d5f6a7856ad5006ff789.tar.xz mana-1e7dba1ee2f90e927298d5f6a7856ad5006ff789.zip |
Fixed name of "UpdateSliders" and reduced redundant docs
Diffstat (limited to 'src/gui/window.h')
-rw-r--r-- | src/gui/window.h | 24 |
1 files changed, 6 insertions, 18 deletions
diff --git a/src/gui/window.h b/src/gui/window.h index 530caf1f..46744699 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -119,39 +119,27 @@ class Window : public gcn::Window, gcn::WidgetListener */ void setMinWidth(int width); + int getMinWidth() const { return mMinWinWidth; } + /** * Sets the minimum height of the window. */ void setMinHeight(int height); + int getMinHeight() const { return mMinWinHeight; } + /** * Sets the maximum width of the window. */ void setMaxWidth(int width); + int getMaxWidth() const { return mMaxWinWidth; } + /** * Sets the minimum height of the window. */ void setMaxHeight(int height); - /** - * Gets the minimum width of the window. - */ - int getMinWidth() const { return mMinWinWidth; } - - /** - * Gets the minimum height of the window. - */ - int getMinHeight() const { return mMinWinHeight; } - - /** - * Gets the maximum width of the window. - */ - int getMaxWidth() const { return mMaxWinWidth; } - - /** - * Gets the minimum height of the window. - */ int getMaxHeight() const { return mMaxWinHeight; } /** |