summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-04-24 12:11:25 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2010-05-06 00:51:31 +0200
commit1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e (patch)
tree80650b194ed19583e83af464204dfe807255ad13
parented4c141a666ffa8221da2a8143d51189d12cd60c (diff)
downloadmana-client-1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e.tar.gz
mana-client-1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e.tar.bz2
mana-client-1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e.tar.xz
mana-client-1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e.zip
Fixed some copy/pasted documentation
-rw-r--r--src/gui/widgets/window.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/widgets/window.h b/src/gui/widgets/window.h
index a8eb4e62..e62f4d92 100644
--- a/src/gui/widgets/window.h
+++ b/src/gui/widgets/window.h
@@ -180,12 +180,12 @@ class Window : public gcn::Window, gcn::WidgetListener
void setVisible(bool visible, bool forceSticky);
/**
- * Returns whether the window will save it's visibility.
+ * Returns whether the window is visible by default.
*/
bool isDefaultVisible() const { return mDefaultVisible; }
/**
- * Returns whether the window will save it's visibility.
+ * Sets whether the window is visible by default.
*/
void setDefaultVisible(bool save) { mDefaultVisible = save; }
@@ -195,7 +195,7 @@ class Window : public gcn::Window, gcn::WidgetListener
bool willSaveVisible() const { return mSaveVisible; }
/**
- * Returns whether the window will save it's visibility.
+ * Sets whether the window will save it's visibility.
*/
void setSaveVisible(bool save) { mSaveVisible = save; }