summaryrefslogtreecommitdiff
path: root/structures.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:08:42 +0200
commitc32707148292d104c66276b43796d6057c8c7a5d (patch)
treebb83513f4aff24153e21a4ec92e34e4c27651b1f /structures.h
parent3.9 (diff)
downloadFreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2
FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip
3.10
Diffstat (limited to 'structures.h')
-rw-r--r--structures.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/structures.h b/structures.h
index 459cdf1b..ca6f8e7d 100644
--- a/structures.h
+++ b/structures.h
@@ -214,7 +214,7 @@ struct FilterConfig
excludeFilter(exclude) {}
FilterConfig() : //construct with default values
- includeFilter(DefaultStr("*")) {}
+ includeFilter(Zstr("*")) {}
Zstring includeFilter;
Zstring excludeFilter;
@@ -273,7 +273,7 @@ struct MainConfiguration
MainConfiguration() :
compareVar(CMP_BY_TIME_SIZE),
handleSymlinks(SYMLINK_IGNORE),
- globalFilter(DefaultStr("*"), standardExcludeFilter()),
+ globalFilter(Zstr("*"), standardExcludeFilter()),
handleDeletion(MOVE_TO_RECYCLE_BIN) {}
FolderPairEnh firstPair; //there needs to be at least one pair!
bgstack15