summaryrefslogtreecommitdiff
path: root/structures.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:23:19 +0200
commit0887aee8c54d0ed51bb2031431e2bcdafebb4c6e (patch)
tree69537ceb9787bb25ac363cc4e6cdaf0804d78363 /structures.h
parent5.12 (diff)
downloadFreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.gz
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.tar.bz2
FreeFileSync-0887aee8c54d0ed51bb2031431e2bcdafebb4c6e.zip
5.13
Diffstat (limited to 'structures.h')
-rw-r--r--structures.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/structures.h b/structures.h
index 91b54942..021a2675 100644
--- a/structures.h
+++ b/structures.h
@@ -349,16 +349,17 @@ bool operator==(const FolderPairEnh& lhs, const FolderPairEnh& rhs)
struct MainConfiguration
{
MainConfiguration() :
-#ifdef FFS_WIN
globalFilter(Zstr("*"),
+#ifdef FFS_WIN
Zstr("\\System Volume Information\\\n")
Zstr("\\$Recycle.Bin\\\n")
Zstr("\\RECYCLER\\\n")
Zstr("\\RECYCLED\\\n")) {}
#elif defined FFS_LINUX
- globalFilter(Zstr("*"),
Zstr("/.Trash-*/\n")
Zstr("/.recycle/\n")) {}
+#elif defined FFS_MAC
+ Zstr("/.Trashes/\n")) {}
#endif
CompConfig cmpConfig; //global compare settings: may be overwritten by folder pair settings
bgstack15