summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Application.h b/Application.h
index 55d6e02d..8d5a0fcf 100644
--- a/Application.h
+++ b/Application.h
@@ -10,6 +10,7 @@
#include <wx/app.h>
#include "library/processXml.h"
+#include <wx/help.h>
class Application : public wxApp
@@ -27,6 +28,7 @@ private:
xmlAccess::XmlGlobalSettings globalSettings; //settings used by GUI, batch mode or both
+ boost::shared_ptr<wxHelpController> helpController; //global help controller
int returnValue;
};
bgstack15