summaryrefslogtreecommitdiff
path: root/structures.h
diff options
context:
space:
mode:
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