diff options
Diffstat (limited to 'lib/process_xml.h')
-rw-r--r-- | lib/process_xml.h | 12 |
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; } |