summaryrefslogtreecommitdiff
path: root/lib/process_xml.h
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2014-04-18 17:24:35 +0200
committerDaniel Wilhelm <daniel@wili.li>2014-04-18 17:24:35 +0200
commit460091fb0b2ff114cc741372f15bb43b702ea3b1 (patch)
tree0562c2eda4c66969c6e6d0910080db9f5b0def3e /lib/process_xml.h
parent5.15 (diff)
downloadFreeFileSync-460091fb0b2ff114cc741372f15bb43b702ea3b1.tar.gz
FreeFileSync-460091fb0b2ff114cc741372f15bb43b702ea3b1.tar.bz2
FreeFileSync-460091fb0b2ff114cc741372f15bb43b702ea3b1.zip
5.16
Diffstat (limited to 'lib/process_xml.h')
-rw-r--r--lib/process_xml.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/process_xml.h b/lib/process_xml.h
index 8a65d67a..626fafe0 100644
--- a/lib/process_xml.h
+++ b/lib/process_xml.h
@@ -50,23 +50,23 @@ struct XmlGuiConfig
XmlGuiConfig() :
hideExcludedItems(false),
handleError(ON_GUIERROR_POPUP),
- showSyncAction(true) {} //initialize values
+ highlightSyncAction(true) {} //initialize values
zen::MainConfiguration mainCfg;
bool hideExcludedItems;
OnGuiError handleError; //reaction on error situation during synchronization
- bool showSyncAction;
+ bool highlightSyncAction;
};
inline
bool operator==(const XmlGuiConfig& lhs, const XmlGuiConfig& rhs)
{
- return lhs.mainCfg == rhs.mainCfg &&
- lhs.hideExcludedItems == rhs.hideExcludedItems &&
- lhs.handleError == rhs.handleError &&
- lhs.showSyncAction == rhs.showSyncAction;
+ return lhs.mainCfg == rhs.mainCfg &&
+ lhs.hideExcludedItems == rhs.hideExcludedItems &&
+ lhs.handleError == rhs.handleError &&
+ lhs.highlightSyncAction == rhs.highlightSyncAction;
}
bgstack15