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.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; }
/**