diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-08-24 09:38:31 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-08-24 09:38:31 +0000 |
commit | 15c9ca70fa37dc8bae6b9ebd63209f5d0f7b0756 (patch) | |
tree | 150a56dbcd731e1abcfc168fd5e937a3b2cd7ddc /src/gui/window.h | |
parent | 78e280de977329aec2b9ad5926882dc9af4d152d (diff) | |
download | mana-15c9ca70fa37dc8bae6b9ebd63209f5d0f7b0756.tar.gz mana-15c9ca70fa37dc8bae6b9ebd63209f5d0f7b0756.tar.bz2 mana-15c9ca70fa37dc8bae6b9ebd63209f5d0f7b0756.tar.xz mana-15c9ca70fa37dc8bae6b9ebd63209f5d0f7b0756.zip |
Removed unnecessary Gui::isCustomCursor method.
Diffstat (limited to 'src/gui/window.h')
-rw-r--r-- | src/gui/window.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/gui/window.h b/src/gui/window.h index 8b6382a2..5e8d8010 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -161,9 +161,8 @@ class Window : public gcn::Window { mShowTitle = flag; } /** - * Sets whether the window is sticky. - * A sticky window will not have its visibility set to false - * on a general setVisible(false) call. + * Sets whether the window is sticky. A sticky window will not have + * its visibility set to false on a general setVisible(false) call. */ void setSticky(bool sticky); @@ -173,8 +172,8 @@ class Window : public gcn::Window bool isSticky(); /** - * Overloads window setVisible by guichan to allow sticky window - * Handling + * Overloads window setVisible by Guichan to allow sticky window + * handling. */ void setVisible(bool visible); @@ -205,8 +204,8 @@ class Window : public gcn::Window void mouseDragged(gcn::MouseEvent &event); /** - * Implements custom cursor image changing context, - * based on mouse relative position. + * Implements custom cursor image changing context, based on mouse + * relative position. */ void mouseMoved(gcn::MouseEvent &event); @@ -252,8 +251,8 @@ class Window : public gcn::Window int defaultWidth, int defaultHeight); /** - * Reset the win pos and size to default. - * Don't forget to set defaults first. + * Reset the win pos and size to default. Don't forget to set defaults + * first. */ virtual void resetToDefaultSize(); |