diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-08-24 09:14:27 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-08-24 09:14:27 +0000 |
commit | 78e280de977329aec2b9ad5926882dc9af4d152d (patch) | |
tree | 44f3dbc5115982a15171dfe8a12884bbcb043bfd /src/gui/window.h | |
parent | b0969b283f6c8bb0701f74e61f8086963f44ff93 (diff) | |
download | mana-78e280de977329aec2b9ad5926882dc9af4d152d.tar.gz mana-78e280de977329aec2b9ad5926882dc9af4d152d.tar.bz2 mana-78e280de977329aec2b9ad5926882dc9af4d152d.tar.xz mana-78e280de977329aec2b9ad5926882dc9af4d152d.zip |
Removed useless logic method and reverted mouse cursor to non-static since
there can be only one Gui instance so there is no point in supporting a shared
resource.
Diffstat (limited to 'src/gui/window.h')
-rw-r--r-- | src/gui/window.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gui/window.h b/src/gui/window.h index 03dfafb2..8b6382a2 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -295,6 +295,7 @@ class Window : public gcn::Window static int instances; /**< Number of Window instances */ static int mouseResize; /**< Window is being resized */ static ImageRect border; /**< The window border and background */ + static Image *closeImage; /**< Close Button Image */ /** * The width of the resize border. Is independent of the actual window @@ -302,8 +303,6 @@ class Window : public gcn::Window * where two borders are moved at the same time. */ static const int resizeBorderWidth = 10; - static Image *closeImage; /**< Close Button Image */ - }; #endif |