diff options
author | Kai Koehne <[email protected]> | 2010-02-26 14:43:39 +0100 |
---|---|---|
committer | Kai Koehne <[email protected]> | 2010-02-26 14:43:39 +0100 |
commit | 318fee6f5c36f9d3dc0ddb7af1dbaf6d18f09dfe (patch) | |
tree | 077383b74ffd6c4b6b48fc66242125fbc6092724 /src/libs/qmljs/qmljscheck.cpp | |
parent | 4ee19843d700bf2ee98fc73d9a8b1e89fc9acc4a (diff) |
QmlJS: Fix compilation with latest changes of QDeclarative
All files have been renamed from Qml to QDeclarative
Diffstat (limited to 'src/libs/qmljs/qmljscheck.cpp')
-rw-r--r-- | src/libs/qmljs/qmljscheck.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/qmljs/qmljscheck.cpp b/src/libs/qmljs/qmljscheck.cpp index 3f0806fa401..ab9e336719a 100644 --- a/src/libs/qmljs/qmljscheck.cpp +++ b/src/libs/qmljs/qmljscheck.cpp @@ -39,7 +39,7 @@ #include <QtGui/QApplication> #ifndef NO_DECLARATIVE_BACKEND -# include <QtDeclarative/private/qmlstringconverters_p.h> // ### remove me +# include <QtDeclarative/private/qdeclarativestringconverters_p.h> // ### remove me #endif namespace QmlJS { @@ -141,7 +141,7 @@ public: #ifndef NO_DECLARATIVE_BACKEND bool ok = false; - QmlStringConverters::colorFromString(colorString, &ok); + QDeclarativeStringConverters::colorFromString(colorString, &ok); if (!ok) _message.message = QCoreApplication::translate("QmlJS::Check", "not a valid color"); #endif |