summaryrefslogtreecommitdiff
path: root/ui/SyncDialog.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 16:56:14 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 16:56:14 +0200
commit1046c195a9bbac24678c06310a4dd56b10347244 (patch)
tree89ad9f6fe3e538d65ef973b628ed9284b6c99e9f /ui/SyncDialog.h
parent1.14 (diff)
downloadFreeFileSync-1046c195a9bbac24678c06310a4dd56b10347244.tar.gz
FreeFileSync-1046c195a9bbac24678c06310a4dd56b10347244.tar.bz2
FreeFileSync-1046c195a9bbac24678c06310a4dd56b10347244.zip
1.15
Diffstat (limited to 'ui/SyncDialog.h')
-rw-r--r--ui/SyncDialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/SyncDialog.h b/ui/SyncDialog.h
index 10f449c8..2f6c5a53 100644
--- a/ui/SyncDialog.h
+++ b/ui/SyncDialog.h
@@ -63,7 +63,7 @@ class BatchDialog: public BatchDlgGenerated
public:
BatchDialog(wxWindow* window,
const MainConfiguration& config,
- const vector<FolderPair>& folderPairs);
+ const std::vector<FolderPair>& folderPairs);
~BatchDialog();
@@ -82,14 +82,14 @@ private:
void OnClose( wxCloseEvent& event);
void OnCancel( wxCommandEvent& event);
- void OnCreateBatchJob( wxCommandEvent& event);
+ void OnSaveBatchJob( wxCommandEvent& event);
void updateFilterButton();
- bool createBatchFile(const wxString& filename);
+ bool saveBatchFile(const wxString& filename);
SyncConfiguration localSyncConfiguration;
- vector<BatchFolderPairGenerated*> localFolderPairs;
+ std::vector<BatchFolderPairGenerated*> localFolderPairs;
bool filterIsActive;
};
bgstack15