SdkTool: Use Qt Creator doctypes

Simplify filename conversion while at it

Change-Id: I0a7473aa42626a04214887f1cc82abe536233a78
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Orgad Shaneh
2014-07-02 10:12:38 +03:00
committed by Orgad Shaneh
parent 49986d90fc
commit 382b1d43eb
12 changed files with 40 additions and 38 deletions

View File

@@ -84,7 +84,7 @@ bool RmQtOperation::setArguments(const QStringList &args)
int RmQtOperation::execute() const
{
QVariantMap map = load(QLatin1String("qtversion"));
QVariantMap map = load(QLatin1String("QtVersions"));
if (map.isEmpty())
return 0;
@@ -92,7 +92,7 @@ int RmQtOperation::execute() const
if (result == map)
return 2;
return save(result, QLatin1String("qtversion")) ? 0 : 3;
return save(result, QLatin1String("QtVersions")) ? 0 : 3;
}
#ifdef WITH_TESTS