Skip to content
Snippets Groups Projects
Commit f9336367 authored by hjk's avatar hjk
Browse files

compile fix after accde261 with bytearray stringbuilder


Change-Id: I9c48aee1b26acad12c278ae23d4f7796a6ed769b
Reviewed-by: default avatarhjk <qthjk@ovi.com>
parent 8c10d607
No related branches found
No related tags found
No related merge requests found
...@@ -55,11 +55,11 @@ Id IAnalyzerTool::defaultActionId(const IAnalyzerTool *tool, StartMode mode) ...@@ -55,11 +55,11 @@ Id IAnalyzerTool::defaultActionId(const IAnalyzerTool *tool, StartMode mode)
Id id = tool->id(); Id id = tool->id();
switch (mode) { switch (mode) {
case StartLocal: case StartLocal:
return Id(QString::fromLatin1("Analyzer." + id.name() + ".Local")); return Id(QByteArray("Analyzer." + id.name() + ".Local").data());
case StartRemote: case StartRemote:
return Id(QString::fromLatin1("Analyzer." + id.name() + ".Remote")); return Id(QByteArray("Analyzer." + id.name() + ".Remote").data());
case StartQml: case StartQml:
return Id(QString::fromLatin1("Analyzer." + id.name() + ".Qml")); return Id(QByteArray("Analyzer." + id.name() + ".Qml").data());
} }
return Id(); return Id();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment