summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2016-10-31 14:16:59 +0100
committerChristian Stenger <christian.stenger@qt.io>2016-10-31 13:21:31 +0000
commitcff2ee701d65bec1c29e0234752a10160c1196f8 (patch)
treef1546bcbd33d34525f3012780897ce3f101c7baa /src/plugins
parent0c0c0a6fd076fc7666af5f0263965d80fff1da51 (diff)
downloadqt-creator-cff2ee701d65bec1c29e0234752a10160c1196f8.tar.gz
ProjectExplorer: Fix compile with Qt5.6 / gcc 4.8
Change-Id: Id1ded1679e9cde4e9cabba61dc5e6aa7aea1e7ed Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/projectexplorer/jsonwizard/jsonfieldpage_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage_p.h b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage_p.h
index f79f36d6c6..13cab66ccf 100644
--- a/src/plugins/projectexplorer/jsonwizard/jsonfieldpage_p.h
+++ b/src/plugins/projectexplorer/jsonwizard/jsonfieldpage_p.h
@@ -161,8 +161,8 @@ private:
bool validate(Utils::MacroExpander *expander, QString *message) override;
void initializeData(Utils::MacroExpander *expander) override;
- QString m_checkedValue = "0";
- QString m_uncheckedValue = "1";
+ QString m_checkedValue = QString("0");
+ QString m_uncheckedValue = QString("1");
QVariant m_checkedExpression;
bool m_isModified = false;