diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-04-24 12:11:25 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-05-06 00:51:31 +0200 |
commit | 1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e (patch) | |
tree | 80650b194ed19583e83af464204dfe807255ad13 | |
parent | ed4c141a666ffa8221da2a8143d51189d12cd60c (diff) | |
download | mana-1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e.tar.gz mana-1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e.tar.bz2 mana-1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e.tar.xz mana-1c995f8f62be0e6af4a5351eaf7bd32ae9e6ae1e.zip |
Fixed some copy/pasted documentation
-rw-r--r-- | src/gui/widgets/window.h | 6 |
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; } |