summaryrefslogtreecommitdiff
path: root/Application.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:57:03 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:57:03 +0200
commit420fb6c9b3427f65cfe24411944ee46b58cfcfb4 (patch)
tree58269ba5ee7a22d2df004f03b100cc234b8c3f14 /Application.h
parent1.16 (diff)
downloadFreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.tar.gz
FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.tar.bz2
FreeFileSync-420fb6c9b3427f65cfe24411944ee46b58cfcfb4.zip
1.17
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