summaryrefslogtreecommitdiff
path: root/src/gui/window.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 01:59:35 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 01:59:35 +0100
commit1e7dba1ee2f90e927298d5f6a7856ad5006ff789 (patch)
tree2fa94e2a0887b4f60da7d2bda95fb4b1886c1474 /src/gui/window.h
parent1715d0afe44a282a356ca88e47c92ec556f094dd (diff)
downloadmana-client-1e7dba1ee2f90e927298d5f6a7856ad5006ff789.tar.gz
mana-client-1e7dba1ee2f90e927298d5f6a7856ad5006ff789.tar.bz2
mana-client-1e7dba1ee2f90e927298d5f6a7856ad5006ff789.tar.xz
mana-client-1e7dba1ee2f90e927298d5f6a7856ad5006ff789.zip
Fixed name of "UpdateSliders" and reduced redundant docs
Diffstat (limited to 'src/gui/window.h')
-rw-r--r--src/gui/window.h24
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; }
/**