forked from qt-creator/qt-creator
Cpp: Use new settings API
Avoid writing defaults to the settings. Task-number: QTCREATORBUG-24430 Change-Id: I8e1d5a5b8ca21ef96a68a4d71a7d97d138bd186b Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -48,6 +48,14 @@ public:
|
||||
}
|
||||
struct CustomTemplate
|
||||
{
|
||||
bool operator==(const CustomTemplate &b) const
|
||||
{
|
||||
return types == b.types
|
||||
&& equalComparison == b.equalComparison
|
||||
&& returnExpression == b.returnExpression
|
||||
&& returnType == b.returnType
|
||||
&& assignment == b.assignment;
|
||||
}
|
||||
QStringList types;
|
||||
QString equalComparison;
|
||||
QString returnExpression;
|
||||
|
||||
Reference in New Issue
Block a user