Debugger: Streamline common options page setup

A preliminary step to debugger options reorganization.

Change-Id: Iac77d87acfe246eff3f5734bcf35e35c2d6909c1
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2016-11-04 10:12:09 +01:00
parent 6f1bd8bbdb
commit d6fff07de8
3 changed files with 172 additions and 241 deletions

View File

@@ -45,15 +45,6 @@ class GlobalDebuggerOptions
public:
void toSettings() const;
void fromSettings();
bool operator==(const GlobalDebuggerOptions &rhs) const
{
return sourcePathMap == rhs.sourcePathMap
&& sourcePathRegExpMap == rhs.sourcePathRegExpMap;
}
bool operator!=(const GlobalDebuggerOptions &rhs) const
{
return !(*this == rhs);
}
SourcePathMap sourcePathMap;
SourcePathRegExpMap sourcePathRegExpMap;