summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qprocess_p.h
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-04-21 17:50:40 +0200
committerOswald Buddenhagen <oswald.buddenhagen@nokia.com>2011-04-29 12:59:52 +0200
commit11a79c65ea992be0e2ede7dc8f60660c9190291f (patch)
tree0bf46d83e6448ddbbbce634b9e91968f4fb1cd74 /src/corelib/io/qprocess_p.h
parente989a4d375b279b3ea61139cb07596e0e4b79e28 (diff)
split QProcessEnvironmentPrivate::Unit into Key and Value
Reviewed-by: thiago Reviewed-by: dt
Diffstat (limited to 'src/corelib/io/qprocess_p.h')
-rw-r--r--src/corelib/io/qprocess_p.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/corelib/io/qprocess_p.h b/src/corelib/io/qprocess_p.h
index 7bfcb311f9..b2a69ef905 100644
--- a/src/corelib/io/qprocess_p.h
+++ b/src/corelib/io/qprocess_p.h
@@ -85,11 +85,14 @@ class QProcessEnvironmentPrivate: public QSharedData
{
public:
#ifdef Q_OS_WIN
- typedef QString Unit;
+ typedef QString Key;
+ typedef QString Value;
#else
- typedef QByteArray Unit;
+ typedef QByteArray Key;
+ typedef QByteArray Value;
#endif
- typedef QHash<Unit, Unit> Hash;
+
+ typedef QHash<Key, Value> Hash;
Hash hash;
static QProcessEnvironment fromList(const QStringList &list);