From 00fa69a5c227121632d355bafecbbed5266f94ec Mon Sep 17 00:00:00 2001 From: Victor Cebollada Date: Mon, 8 Dec 2014 15:29:47 +0000 Subject: [PATCH] ImfManager - Typo fix SetRestoreAferFocusLost typo fixed -> SetRestoreAfterFocusLost Change-Id: I13ad105e09e7b91c845b57c911af28a8ed4d9299 Signed-off-by: Victor Cebollada --- base/dali-toolkit/internal/controls/text-input/text-input-impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/dali-toolkit/internal/controls/text-input/text-input-impl.cpp b/base/dali-toolkit/internal/controls/text-input/text-input-impl.cpp index 90dd6d5..512b163 100644 --- a/base/dali-toolkit/internal/controls/text-input/text-input-impl.cpp +++ b/base/dali-toolkit/internal/controls/text-input/text-input-impl.cpp @@ -1042,7 +1042,7 @@ void TextInput::OnKeyInputFocusGained() imfManager.Activate(); // When window gain lost focus, the imf manager is deactivated. Thus when window gain focus again, the imf manager must be activated. - imfManager.SetRestoreAferFocusLost( true ); + imfManager.SetRestoreAfterFocusLost( true ); imfManager.SetCursorPosition( mCursorPosition ); imfManager.NotifyCursorPosition(); @@ -1076,7 +1076,7 @@ void TextInput::OnKeyInputFocusLost() if ( imfManager ) { // The text editing is finished. Therefore the imf manager don't have restore activation. - imfManager.SetRestoreAferFocusLost( false ); + imfManager.SetRestoreAfterFocusLost( false ); // Notify that the text editing finish. imfManager.Deactivate(); -- 2.7.4