summaryrefslogtreecommitdiff
path: root/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp
diff options
context:
space:
mode:
authorhjk <hjk121@nokiamail.com>2013-03-19 12:30:54 +0100
committerhjk <hjk121@nokiamail.com>2013-03-19 17:14:05 +0100
commit07cab1ab750d5505774572459725a7d3c0bb03dd (patch)
treeb785374b091e625268c046166c0ef5d909583413 /src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp
parent11cd0e5b1b4c378cd1388f871f5ba4ad341b5100 (diff)
downloadqt-creator-07cab1ab750d5505774572459725a7d3c0bb03dd.tar.gz
RemoteLinux: Avoid some use of Core::Id QString use
Change-Id: Id5e45466f85f61dfbe3e6d98646cc25dcc72d7e6 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp')
-rw-r--r--src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp b/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp
index a38514d1c9..85aed49675 100644
--- a/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp
+++ b/src/plugins/remotelinux/remotelinuxruncontrolfactory.cpp
@@ -62,7 +62,7 @@ bool RemoteLinuxRunControlFactory::canRun(RunConfiguration *runConfiguration, Ru
if (mode != NormalRunMode && mode != DebugRunMode && mode != DebugRunModeWithBreakOnMain)
return false;
- const QString idStr = QString::fromLatin1(runConfiguration->id().name());
+ const QByteArray idStr = runConfiguration->id().name();
if (!runConfiguration->isEnabled() || !idStr.startsWith(RemoteLinuxRunConfiguration::IdPrefix))
return false;