summaryrefslogtreecommitdiff
path: root/ui/MainDialog.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:51:28 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:51:28 +0200
commit8f27768c1c35f09152b35caeab20e705086fd03f (patch)
tree1b1c8fa36bb2b7fc60e2be551a454de239bb5c7f /ui/MainDialog.h
parent1.7 (diff)
downloadFreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.tar.gz
FreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.tar.bz2
FreeFileSync-8f27768c1c35f09152b35caeab20e705086fd03f.zip
1.8
Diffstat (limited to 'ui/MainDialog.h')
-rw-r--r--ui/MainDialog.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/MainDialog.h b/ui/MainDialog.h
index 3bc4c590..3ef7dbf5 100644
--- a/ui/MainDialog.h
+++ b/ui/MainDialog.h
@@ -136,6 +136,7 @@ private:
void OnMenuQuit( wxCommandEvent& event);
void OnMenuLangEnglish( wxCommandEvent& event);
void OnMenuLangGerman( wxCommandEvent& event);
+ void OnMenuLangFrench( wxCommandEvent& event);
void enableSynchronization(bool value);
@@ -227,7 +228,7 @@ public:
void updateProcessedData(int objectsProcessed, double dataProcessed);
int reportError(const wxString& text);
- void triggerUI_Refresh();
+ void triggerUI_Refresh(bool asyncProcessActive);
private:
MainDialog* mainDialog;
@@ -248,7 +249,7 @@ public:
void updateProcessedData(int objectsProcessed, double dataProcessed);
int reportError(const wxString& text);
- void triggerUI_Refresh();
+ void triggerUI_Refresh(bool asyncProcessActive);
private:
SyncStatus* syncStatusFrame;
bgstack15