diff options
Diffstat (limited to 'gui/options.h')
-rw-r--r-- | gui/options.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/options.h b/gui/options.h index c5a88b477d..5b2e34ccea 100644 --- a/gui/options.h +++ b/gui/options.h @@ -24,6 +24,10 @@ #include "gui/dialog.h" #include "common/str.h" +#ifdef _WIN32_WCE +#include "backends/wince/CEKeysDialog.h" +#endif + class GameDetector; namespace GUI { @@ -105,6 +109,9 @@ public: protected: BrowserDialog *_browser; +#ifdef _WIN32_WCE + CEKeysDialog *_keysDialog; +#endif StaticTextWidget *_savePath; StaticTextWidget *_extraPath; }; |