Title: [133014] trunk/Source/WebKit2
Revision
133014
Author
[email protected]
Date
2012-10-31 05:19:38 -0700 (Wed, 31 Oct 2012)

Log Message

[WK2][EFL] Assert check need to be changed in InputMethodContextEfl::InputMethodContextEfl
https://bugs.webkit.org/show_bug.cgi?id=100840

Patch by KyungTae Kim <[email protected]> on 2012-10-31
Reviewed by Kenneth Rohde Christiansen.

Because 'context' is already set to 'm_context', assert check need to be done for m_context.

* UIProcess/efl/InputMethodContextEfl.cpp:
(WebKit::InputMethodContextEfl::InputMethodContextEfl):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (133013 => 133014)


--- trunk/Source/WebKit2/ChangeLog	2012-10-31 11:52:33 UTC (rev 133013)
+++ trunk/Source/WebKit2/ChangeLog	2012-10-31 12:19:38 UTC (rev 133014)
@@ -1,3 +1,15 @@
+2012-10-31  KyungTae Kim  <[email protected]>
+
+        [WK2][EFL] Assert check need to be changed in InputMethodContextEfl::InputMethodContextEfl
+        https://bugs.webkit.org/show_bug.cgi?id=100840
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Because 'context' is already set to 'm_context', assert check need to be done for m_context.
+
+        * UIProcess/efl/InputMethodContextEfl.cpp:
+        (WebKit::InputMethodContextEfl::InputMethodContextEfl):
+
 2012-10-31  Kenneth Rohde Christiansen  <[email protected]>
 
         [WK2/EFL] Make sure all our events are transformed correctly

Modified: trunk/Source/WebKit2/UIProcess/efl/InputMethodContextEfl.cpp (133013 => 133014)


--- trunk/Source/WebKit2/UIProcess/efl/InputMethodContextEfl.cpp	2012-10-31 11:52:33 UTC (rev 133013)
+++ trunk/Source/WebKit2/UIProcess/efl/InputMethodContextEfl.cpp	2012-10-31 12:19:38 UTC (rev 133014)
@@ -35,7 +35,7 @@
     , m_context(context)
     , m_focused(false)
 {
-    ASSERT(context);
+    ASSERT(m_context);
     ecore_imf_context_event_callback_add(m_context.get(), ECORE_IMF_CALLBACK_PREEDIT_CHANGED, onIMFPreeditSequenceChanged, this);
     ecore_imf_context_event_callback_add(m_context.get(), ECORE_IMF_CALLBACK_COMMIT, onIMFInputSequenceComplete, this);
 }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to