summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcompileddata.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-11-17 03:33:07 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-11-17 03:33:07 (GMT)
commit987819bf3d28e18a51ad9f654bf25903650d7ee4 (patch)
tree3ff6dc53ddc7bf1ea1ac8a662c95920e164edfe7 /src/declarative/qml/qmlcompileddata.cpp
parent89464ba786864f8a905c0d9939033970ac10f978 (diff)
downloadQt-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.cpp6
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() << "-------------------------------------------------------------------------------";
}