diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:59 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:24:59 +0200 |
commit | a1c91f4695e208d5a8f80dc37b1818169b7829ff (patch) | |
tree | 52f5134376d17c99b6c9e53133a2eb5cf171377c /lib/process_xml.h | |
parent | 5.16 (diff) | |
download | FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.gz FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.tar.bz2 FreeFileSync-a1c91f4695e208d5a8f80dc37b1818169b7829ff.zip |
5.17
Diffstat (limited to 'lib/process_xml.h')
-rw-r--r-- | lib/process_xml.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/process_xml.h b/lib/process_xml.h index 626fafe0..95fa644d 100644 --- a/lib/process_xml.h +++ b/lib/process_xml.h @@ -175,17 +175,17 @@ struct XmlGlobalSettings cfgFileHistMax(30), folderHistMax(15), onCompletionHistoryMax(8), -#ifdef FFS_WIN +#ifdef ZEN_WIN defaultExclusionFilter(Zstr("\\System Volume Information\\") Zstr("\n") Zstr("\\$Recycle.Bin\\") Zstr("\n") Zstr("\\RECYCLER\\") Zstr("\n") Zstr("\\RECYCLED\\") Zstr("\n") Zstr("*\\desktop.ini") Zstr("\n") Zstr("*\\thumbs.db")), -#elif defined FFS_LINUX +#elif defined ZEN_LINUX defaultExclusionFilter(Zstr("/.Trash-*/") Zstr("\n") Zstr("/.recycle/")), -#elif defined FFS_MAC +#elif defined ZEN_MAC defaultExclusionFilter(Zstr("/.fseventsd/") Zstr("\n") Zstr("/.Spotlight-V100/") Zstr("\n") Zstr("/.Trashes/") Zstr("\n") @@ -194,9 +194,9 @@ struct XmlGlobalSettings #endif //deleteOnBothSides(false), useRecyclerForManualDeletion(true), //enable if OS supports it; else user will have to activate first and then get an error message -#if defined FFS_WIN || defined FFS_MAC +#if defined ZEN_WIN || defined ZEN_MAC textSearchRespectCase(false), -#elif defined FFS_LINUX +#elif defined ZEN_LINUX textSearchRespectCase(true), #endif showIcons(true), @@ -204,16 +204,16 @@ struct XmlGlobalSettings lastUpdateCheck(0) { //default external apps will be translated "on the fly"!!! First entry will be used for [Enter] or mouse double-click! -#ifdef FFS_WIN +#ifdef ZEN_WIN externelApplications.push_back(std::make_pair(L"Show in Explorer", L"explorer /select, \"%item_path%\"")); externelApplications.push_back(std::make_pair(L"Open with default application", L"\"%item_path%\"")); //mark for extraction: _("Show in Explorer") //mark for extraction: _("Open with default application") -#elif defined FFS_LINUX +#elif defined ZEN_LINUX externelApplications.push_back(std::make_pair(L"Browse directory", L"xdg-open \"%item_folder%\"")); externelApplications.push_back(std::make_pair(L"Open with default application", L"xdg-open \"%item_path%\"")); //mark for extraction: _("Browse directory") Linux doesn't use the term "folder" -#elif defined FFS_MAC +#elif defined ZEN_MAC externelApplications.push_back(std::make_pair(L"Browse directory", L"open -R \"%item_path%\"")); externelApplications.push_back(std::make_pair(L"Open with default application", L"open \"%item_path%\"")); #endif |