Title: [107010] trunk/Source/WebKit/efl
Revision
107010
Author
commit-qu...@webkit.org
Date
2012-02-07 16:55:58 -0800 (Tue, 07 Feb 2012)

Log Message

[EFL] Add missing initialization of editable variable.
https://bugs.webkit.org/show_bug.cgi?id=77948

Patch by Krzysztof Czech <k.cz...@samsung.com> on 2012-02-07
Reviewed by Eric Seidel.

The value of editable in Ewk_Frame_Smart_Data struct is not set.

* ewk/ewk_frame.cpp:
(ewk_frame_editable_set):

Modified Paths

Diff

Modified: trunk/Source/WebKit/efl/ChangeLog (107009 => 107010)


--- trunk/Source/WebKit/efl/ChangeLog	2012-02-08 00:52:39 UTC (rev 107009)
+++ trunk/Source/WebKit/efl/ChangeLog	2012-02-08 00:55:58 UTC (rev 107010)
@@ -1,3 +1,15 @@
+2012-02-07  Krzysztof Czech  <k.cz...@samsung.com>
+
+        [EFL] Add missing initialization of editable variable.
+        https://bugs.webkit.org/show_bug.cgi?id=77948
+
+        Reviewed by Eric Seidel.
+
+        The value of editable in Ewk_Frame_Smart_Data struct is not set.
+
+        * ewk/ewk_frame.cpp:
+        (ewk_frame_editable_set):
+
 2012-02-06  JungJik Lee  <jungjik....@samsung.com>
 
         [EFL] Define to prevent a single backing-store application from calling the tiled view function.

Modified: trunk/Source/WebKit/efl/ewk/ewk_frame.cpp (107009 => 107010)


--- trunk/Source/WebKit/efl/ewk/ewk_frame.cpp	2012-02-08 00:52:39 UTC (rev 107009)
+++ trunk/Source/WebKit/efl/ewk/ewk_frame.cpp	2012-02-08 00:55:58 UTC (rev 107010)
@@ -459,6 +459,7 @@
     editable = !!editable;
     if (smartData->editable == editable)
         return true;
+    smartData->editable = editable;
     if (editable)
         smartData->frame->editor()->applyEditingStyleToBodyElement();
     return true;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to