diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-17 03:33:07 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-17 03:33:07 (GMT) |
commit | 987819bf3d28e18a51ad9f654bf25903650d7ee4 (patch) | |
tree | 3ff6dc53ddc7bf1ea1ac8a662c95920e164edfe7 /src/declarative/qml/qmlcompileddata.cpp | |
parent | 89464ba786864f8a905c0d9939033970ac10f978 (diff) | |
download | Qt-987819bf3d28e18a51ad9f654bf25903650d7ee4.zip Qt-987819bf3d28e18a51ad9f654bf25903650d7ee4.tar.gz Qt-987819bf3d28e18a51ad9f654bf25903650d7ee4.tar.bz2 |
QmlInstruction autotest
Diffstat (limited to 'src/declarative/qml/qmlcompileddata.cpp')
-rw-r--r-- | src/declarative/qml/qmlcompileddata.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlcompileddata.cpp b/src/declarative/qml/qmlcompileddata.cpp index f587053..44d2745 100644 --- a/src/declarative/qml/qmlcompileddata.cpp +++ b/src/declarative/qml/qmlcompileddata.cpp @@ -197,12 +197,12 @@ void QmlCompiledData::dumpInstructions() { if (!name.isEmpty()) qWarning() << name; - qWarning() << "Index\tLine\tOperation\t\tData1\tData2\t\tComments"; - qWarning() << "-------------------------------------------------------------------------------"; + qWarning().nospace() << "Index\tLine\tOperation\t\tData1\tData2\tData3\tComments"; + qWarning().nospace() << "-------------------------------------------------------------------------------"; for (int ii = 0; ii < bytecode.count(); ++ii) { dump(&bytecode[ii], ii); } - qWarning() << "-------------------------------------------------------------------------------"; + qWarning().nospace() << "-------------------------------------------------------------------------------"; } |