diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-09-16 00:43:58 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-09-16 00:43:58 (GMT) |
commit | cacf0e4f1411c844f2e866f07af5f28f0f53c7ec (patch) | |
tree | 3f894a5d3891e78ad294baf238275da124bacd6b /src/declarative/fx | |
parent | f380892b03fbb4cefc18b9ecc4edf27e88340b97 (diff) | |
download | Qt-cacf0e4f1411c844f2e866f07af5f28f0f53c7ec.zip Qt-cacf0e4f1411c844f2e866f07af5f28f0f53c7ec.tar.gz Qt-cacf0e4f1411c844f2e866f07af5f28f0f53c7ec.tar.bz2 |
Compile fix
Diffstat (limited to 'src/declarative/fx')
-rw-r--r-- | src/declarative/fx/qfxtextinput.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/declarative/fx/qfxtextinput.cpp b/src/declarative/fx/qfxtextinput.cpp index b5960fd..8a09ebc 100644 --- a/src/declarative/fx/qfxtextinput.cpp +++ b/src/declarative/fx/qfxtextinput.cpp @@ -41,6 +41,7 @@ #include "qfxtextinput.h" #include "qfxtextinput_p.h" +#include "qmlinfo.h" #include <QValidator> #include <QApplication> #include <QFontMetrics> @@ -509,7 +510,7 @@ void QFxTextInputPrivate::startCreatingCursor() q->connect(cursorComponent, SIGNAL(statusChanged(int)), q, SLOT(createCursor())); }else{//isError - qmlInfo(this) << "Could not load cursor delegate"; + qmlInfo(q) << "Could not load cursor delegate"; qWarning() << cursorComponent->errors(); } } @@ -519,7 +520,7 @@ void QFxTextInput::createCursor() Q_D(QFxTextInput); if(d->cursorComponent->isError()){ qmlInfo(this) << "Could not load cursor delegate"; - qWarning() << cursorComponent->errors(); + qWarning() << d->cursorComponent->errors(); return; } |