Add a comand line editor for environment variables

Task-number: QTCREATORBUG-6499

Change-Id: I43df7bddd10776e0fdb192c668ab0d99a6fea7e6
Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
Jarek Kobus
2011-12-06 16:45:07 +01:00
committed by hjk
parent 16ad21be9d
commit 062208fdf4
8 changed files with 272 additions and 8 deletions

View File

@@ -58,6 +58,7 @@ public:
return unset == other.unset && name == other.name && value == other.value;
}
static void sort(QList<EnvironmentItem> *list);
static QList<EnvironmentItem> fromStringList(const QStringList &list);
static QStringList toStringList(const QList<EnvironmentItem> &list);
};