diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-15 09:22:42 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-07-15 09:22:42 (GMT) |
commit | f828db056642ac2373c8592c11039e1c7f1b1046 (patch) | |
tree | 53cd65d3e1f44778b608f711b37c0183023b34bb /src/declarative/qml/qmlinstruction.cpp | |
parent | fa04625271c725deb669500a8196a07f0c1683b5 (diff) | |
download | Qt-f828db056642ac2373c8592c11039e1c7f1b1046.zip Qt-f828db056642ac2373c8592c11039e1c7f1b1046.tar.gz Qt-f828db056642ac2373c8592c11039e1c7f1b1046.tar.bz2 |
Remove pointless QmlCompiledComponent class
Diffstat (limited to 'src/declarative/qml/qmlinstruction.cpp')
-rw-r--r-- | src/declarative/qml/qmlinstruction.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/qml/qmlinstruction.cpp b/src/declarative/qml/qmlinstruction.cpp index 863ff9a..83fb18b 100644 --- a/src/declarative/qml/qmlinstruction.cpp +++ b/src/declarative/qml/qmlinstruction.cpp @@ -39,13 +39,13 @@ ** ****************************************************************************/ -#include "private/qmlinstruction_p.h" -#include "private/qmlcompiledcomponent_p.h" -#include <QDebug> +#include "qmlinstruction_p.h" +#include "qmlcompiler_p.h" +#include <QtCore/qdebug.h> QT_BEGIN_NAMESPACE -void QmlCompiledComponent::dump(QmlInstruction *instr, int idx) +void QmlCompiledData::dump(QmlInstruction *instr, int idx) { QByteArray lineNumber = QByteArray::number(instr->line); if (instr->line == (unsigned short)-1) |