diff options
author | Kai Koehne <[email protected]> | 2013-10-07 14:22:02 +0200 |
---|---|---|
committer | The Qt Project <[email protected]> | 2013-10-09 15:11:11 +0200 |
commit | e34477bfaf318fe26cd935728eeec144cc1659fa (patch) | |
tree | be30f25a9877256788fe50cf18755b1e9acb84f9 /src/qml/jsruntime | |
parent | 103d943afc2197bbf27df64d65360b5b2dad0d5b (diff) |
Use common prefix for environment variable
Change-Id: Idbbdcad42106d30451000fc6593428a0bac4bc04
Reviewed-by: Erik Verbruggen <[email protected]>
Diffstat (limited to 'src/qml/jsruntime')
-rw-r--r-- | src/qml/jsruntime/qv4mm.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/qml/jsruntime/qv4mm.cpp b/src/qml/jsruntime/qv4mm.cpp index f6adadf719..59dd4e8625 100644 --- a/src/qml/jsruntime/qv4mm.cpp +++ b/src/qml/jsruntime/qv4mm.cpp @@ -169,9 +169,9 @@ struct MemoryManager::Data memset(nChunks, 0, sizeof(nChunks)); memset(availableItems, 0, sizeof(availableItems)); memset(allocCount, 0, sizeof(allocCount)); - scribble = !qgetenv("MM_SCRIBBLE").isEmpty(); - aggressiveGC = !qgetenv("MM_AGGRESSIVE_GC").isEmpty(); - exactGC = !qgetenv("MM_EXACT_GC").isEmpty(); + scribble = !qgetenv("QV4_MM_SCRIBBLE").isEmpty(); + aggressiveGC = !qgetenv("QV4_MM_AGGRESSIVE_GC").isEmpty(); + exactGC = !qgetenv("QV4_MM_EXACT_GC").isEmpty(); if (aggressiveGC) qDebug() << "Using aggressive garbage collection"; if (exactGC) |