QmlProfiler: Remove RemoteLinux dependency

Change-Id: I3ff14691b4f9c80793a491b61444f8ceeb05a4fb
Reviewed-by: Christiaan Janssen <christiaan.janssen@digia.com>
This commit is contained in:
Aurindam Jana
2013-05-06 09:10:22 +02:00
parent 6e677a97fb
commit e88ec44e71
17 changed files with 706 additions and 181 deletions

View File

@@ -45,7 +45,7 @@ enum StartMode
StartLocal = -1,
StartRemote = -2,
StartQml = -3,
StartQmlAndroid = -4 // TODO: remove this enum and make it generic
StartQmlRemote = -4 // TODO: remove this enum and make it generic
};
namespace Constants {

View File

@@ -54,7 +54,7 @@ Id IAnalyzerTool::defaultActionId(const IAnalyzerTool *tool, StartMode mode)
case StartRemote:
return id.withSuffix(".Remote");
case StartQml:
case StartQmlAndroid:
case StartQmlRemote:
return id.withSuffix(".Qml");
}
return Id();