summaryrefslogtreecommitdiff
path: root/src/gui/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/gui.h')
-rw-r--r--src/gui/gui.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/gui/gui.h b/src/gui/gui.h
index 35b7e21f..1c8ccb34 100644
--- a/src/gui/gui.h
+++ b/src/gui/gui.h
@@ -72,19 +72,16 @@ class Gui : public gcn::Gui, public gcn::MouseListener
void mousePress(int mx, int my, int button);
private:
- gcn::Gui *gui; /**< The GUI system */
#ifdef USE_OPENGL
gcn::ImageLoader *hostImageLoader; /**< For loading images in GL */
#endif
gcn::ImageLoader *imageLoader; /**< For loading images */
gcn::ImageFont *guiFont; /**< The global GUI font */
-
- bool topHasMouse;
};
-extern Gui *gui;
-extern WindowContainer *guiTop; // The top container
-extern Graphics *guiGraphics; // Graphics driver
-extern gcn::SDLInput *guiInput; // GUI input
+extern Gui *gui; /**< The GUI system */
+extern WindowContainer *guiTop; /**< The top container */
+extern Graphics *guiGraphics; /**< Graphics driver */
+extern gcn::SDLInput *guiInput; /**< GUI input */
#endif