diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-10-18 14:49:43 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2011-10-18 14:49:43 +0200 |
commit | 3e85cc8bfccf63236e815eba64acd99fbe154daf (patch) | |
tree | c3988ded4857263cebff1515999fa5f44aa39b85 /plugingui/globalcontext.h | |
parent | ef47c71a29292ff9114a67d782e526ac662a1f32 (diff) |
New Label and LED widgets.
Diffstat (limited to 'plugingui/globalcontext.h')
-rw-r--r-- | plugingui/globalcontext.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugingui/globalcontext.h b/plugingui/globalcontext.h index 625ba3d..2aa083b 100644 --- a/plugingui/globalcontext.h +++ b/plugingui/globalcontext.h @@ -31,6 +31,10 @@ #include <X11/Xlib.h> #endif/*X11*/ +#ifdef WIN32 +#include <windows.h> +#endif/*WIN32*/ + #include <map> class Widget; @@ -44,9 +48,7 @@ public: #ifdef X11 Display *display; - std::map<Window, Widget*> widgets; - #endif/*X11*/ }; |