Merge "Fix ItemView insert/remove when outside the current visible range" into tizen
authorPaul Wisbey <p.wisbey@samsung.com>
Fri, 12 Dec 2014 14:35:07 +0000 (06:35 -0800)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Fri, 12 Dec 2014 14:35:07 +0000 (06:35 -0800)
base/dali-toolkit/internal/controls/text-input/text-input-impl.cpp

index 90dd6d5..512b163 100644 (file)
@@ -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();