summaryrefslogtreecommitdiff
path: root/ui/MainDialog.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:43 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:07:43 +0200
commit4226e548662339ea1ca37b45385a7cf9b237ff1e (patch)
tree9a3fa54b85d97f05164e41bdb96b82f748a37342 /ui/MainDialog.h
parent3.7 (diff)
downloadFreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.tar.gz
FreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.tar.bz2
FreeFileSync-4226e548662339ea1ca37b45385a7cf9b237ff1e.zip
3.8
Diffstat (limited to 'ui/MainDialog.h')
-rw-r--r--ui/MainDialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/MainDialog.h b/ui/MainDialog.h
index 3142cab8..744a95da 100644
--- a/ui/MainDialog.h
+++ b/ui/MainDialog.h
@@ -93,7 +93,7 @@ private:
xmlAccess::XmlGlobalSettings& settings,
bool startComparison);
-void cleanUp(bool saveLastUsedConfig);
+ void cleanUp(bool saveLastUsedConfig);
//configuration load/save
bool readConfigurationFromXml(const wxString& filename);
@@ -296,7 +296,7 @@ void cleanUp(bool saveLastUsedConfig);
//compare status panel (hidden on start, shown when comparing)
std::auto_ptr<CompareStatus> compareStatus; //always bound
-bool cleanedUp;
+ bool cleanedUp;
//save the last used config filename history
std::vector<wxString> cfgFileNames;
@@ -306,10 +306,10 @@ bool cleanedUp;
int lastSortColumn;
const wxGrid* lastSortGrid;
-#ifdef FFS_WIN
//update icons periodically: one updater instance for both left and right grids
std::auto_ptr<IconUpdater> updateFileIcons;
+#ifdef FFS_WIN
//enable moving window by clicking on sub-windows instead of header line
std::auto_ptr<FreeFileSync::MouseMoveWindow> moveWholeWindow;
#endif
bgstack15