summaryrefslogtreecommitdiff
path: root/ui/MainDialog.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:04:59 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:04:59 +0200
commitf570e2f2685aa43aa518c2f8578391c1847cddbe (patch)
treeb9376b3a7e807c5e0c4cf3d5615c14034d9675d6 /ui/MainDialog.h
parent3.2 (diff)
downloadFreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.tar.gz
FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.tar.bz2
FreeFileSync-f570e2f2685aa43aa518c2f8578391c1847cddbe.zip
3.3
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 61f1537f..ff9fee09 100644
--- a/ui/MainDialog.h
+++ b/ui/MainDialog.h
@@ -82,7 +82,7 @@ public:
MainDialog(wxFrame* frame,
const wxString& cfgFileName,
xmlAccess::XmlGlobalSettings& settings,
- wxHelpController& helpController);
+ wxHelpController& helpController);
~MainDialog();
@@ -116,7 +116,7 @@ private:
void removeAddFolderPair(const unsigned int pos);
void clearAddFolderPairs();
-void updateGuiForFolderPair(); //helper method: add usability by showing/hiding buttons related to folder pairs
+ void updateGuiForFolderPair(); //helper method: add usability by showing/hiding buttons related to folder pairs
//main method for putting gridDataView on UI: updates data respecting current view settings
void updateGuiGrid();
@@ -267,7 +267,7 @@ void updateGuiForFolderPair(); //helper method: add usability by showing/hiding
xmlAccess::XmlGuiConfig currentCfg;
//folder pairs:
- std::auto_ptr<FirstFolderPairCfg> firstFolderPair; //always bound!!!
+ std::auto_ptr<FirstFolderPairCfg> firstFolderPair; //always bound!!!
std::vector<FolderPairPanel*> additionalFolderPairs; //additional pairs to the first pair
//gui settings
bgstack15