summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
Diffstat (limited to 'Application.h')
-rw-r--r--Application.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/Application.h b/Application.h
index 60b8fbe7..2cf69d9a 100644
--- a/Application.h
+++ b/Application.h
@@ -14,6 +14,7 @@
#include "ui/smallDialogs.h"
#include "library/misc.h"
#include "library/processXml.h"
+#include <memory>
class Application : public wxApp
{
@@ -22,10 +23,7 @@ public:
int OnRun();
int OnExit();
bool OnExceptionInMainLoop();
-
- void initialize();
-
- bool ProcessIdle(); //virtual impl.
+ void OnStartApplication(wxIdleEvent& event);
private:
void runBatchMode(const wxString& filename, xmlAccess::XmlGlobalSettings& globalSettings);
@@ -59,7 +57,7 @@ class FfsTrayIcon;
class BatchStatusHandlerSilent : public BatchStatusHandler
{
public:
- BatchStatusHandlerSilent(const xmlAccess::OnError handleError, int& returnVal);
+ BatchStatusHandlerSilent(const xmlAccess::OnError handleError, const wxString& logfileDirectory, int& returnVal);
~BatchStatusHandlerSilent();
bgstack15