From b11d3919936e710162c9ffa405152b8499111b1b Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Wed, 7 Sep 2011 22:02:09 +0200 Subject: [PATCH] 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 --- src/declarative/items/qsgcanvas.cpp | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) 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 -- 1.7.2.5