From: Adeel Kazmi Date: Thu, 11 Dec 2014 15:19:40 +0000 (-0800) Subject: Merge "ImfManager - Typo fix SetRestoreAferFocusLost typo fixed -> SetRe... X-Git-Tag: accepted/tizen/common/20141219.104151^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e97c5eabed3149cf21eedfc4fe9773de29dc94e;hp=c4e366261947882968de0a13e51a3dd0d2f34e41;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git Merge "ImfManager - Typo fix SetRestoreAferFocusLost typo fixed -> SetRestoreAfterFocusLost" into tizen --- 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();