diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:12:46 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:12:46 +0200 |
commit | b338e29fd3eaf700f8c8360aa0310048ba941d54 (patch) | |
tree | 122f8ef3790d12cd10275ef7453a9e8053322d78 /library/process_xml.h | |
parent | 3.18 (diff) | |
download | FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.gz FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.tar.bz2 FreeFileSync-b338e29fd3eaf700f8c8360aa0310048ba941d54.zip |
3.19
Diffstat (limited to 'library/process_xml.h')
-rw-r--r-- | library/process_xml.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/library/process_xml.h b/library/process_xml.h index 2e57c433..d7437825 100644 --- a/library/process_xml.h +++ b/library/process_xml.h @@ -125,6 +125,7 @@ struct OptionalDialogs bool warningNotEnoughDiskSpace; bool warningUnresolvedConflicts; bool warningSyncDatabase; + bool warningRecyclerMissing; bool popupOnConfigChange; bool showSummaryBeforeSync; }; @@ -159,6 +160,7 @@ struct XmlGlobalSettings dlgPos(wxDefaultCoord, wxDefaultCoord), dlgSize(wxDefaultCoord, wxDefaultCoord), isMaximized(false), + maxFolderPairsVisible(6), autoAdjustColumnsLeft(false), autoAdjustColumnsRight(false), folderHistMax(12), @@ -191,6 +193,8 @@ struct XmlGlobalSettings wxSize dlgSize; bool isMaximized; + int maxFolderPairsVisible; + ColumnAttributes columnAttribLeft; ColumnAttributes columnAttribRight; @@ -200,7 +204,7 @@ struct XmlGlobalSettings ExternalApps externelApplications; std::vector<wxString> cfgFileHistory; - wxString lastUsedConfigFile; + std::vector<wxString> lastUsedConfigFiles; std::vector<wxString> folderHistoryLeft; std::vector<wxString> folderHistoryRight; |