From: Lars Knoll Date: Wed, 7 Sep 2011 20:02:09 +0000 (+0200) Subject: Fix a typo in the method name X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=b11d3919936e710162c9ffa405152b8499111b1b;p=konrad%2Fqtdeclarative.git Fix a typo in the method name Change-Id: I8f5ca3203058dce6cc4835a5b1cd6aa0c190bcac Reviewed-on: http://codereview.qt-project.org/4406 Reviewed-by: Qt Sanity Bot Reviewed-by: Vesa Rantanen Reviewed-by: Lars Knoll --- diff --git a/src/declarative/items/qsgcanvas.cpp b/src/declarative/items/qsgcanvas.cpp index 6e81656..6c11e12 100644 --- a/src/declarative/items/qsgcanvas.cpp +++ b/src/declarative/items/qsgcanvas.cpp @@ -74,7 +74,7 @@ void QSGCanvasRenderLoop::updateFocusItemTransform() { QSGItem *focus = renderer->activeFocusItem(); if (focus && qApp->inputPanel()->inputItem() == focus) - qApp->inputPanel()->setInputItemTranform(QSGItemPrivate::get(focus)->itemToCanvasTransform()); + qApp->inputPanel()->setInputItemTransform(QSGItemPrivate::get(focus)->itemToCanvasTransform()); } class QSGCanvasPlainRenderLoop : public QObject, public QSGCanvasRenderLoop @@ -737,7 +737,6 @@ void QSGCanvasPrivate::notifyFocusChangesRecur(QSGItem **items, int remaining) void QSGCanvasPrivate::updateInputMethodData() { qApp->inputPanel()->setInputItem(activeFocusItem); - qApp->inputPanel()->setInputItemTranform(QSGItemPrivate::get(activeFocusItem)->itemToCanvasTransform()); } QVariant QSGCanvas::inputMethodQuery(Qt::InputMethodQuery query) const