Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Debugger: Fix compilation with C++11
Change-Id: I6f753d14aa381fd29aadfc7c649599beb4ec4a9a
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
  • Loading branch information
Kai Koehne authored and Qt by Nokia committed Mar 19, 2012
1 parent cad5df2 commit 341f743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qml/debugger/qqmlenginedebugservice.cpp
Expand Up @@ -211,7 +211,7 @@ QVariant QQmlEngineDebugService::valueContents(const QVariant &value) const
}
}

return QStringLiteral("<unknown value>");
return QString(QStringLiteral("<unknown value>"));
}

void QQmlEngineDebugService::buildObjectDump(QDataStream &message,
Expand Down

0 comments on commit 341f743

Please sign in to comment.