Title: [97694] trunk/Source/WebKit/chromium
Revision
97694
Author
[email protected]
Date
2011-10-17 18:34:06 -0700 (Mon, 17 Oct 2011)

Log Message

[Chromium] Add a missing semi-colon in ExternalPopupMenu.cpp
https://bugs.webkit.org/show_bug.cgi?id=70232

Patch by Peter Beverloo <[email protected]> on 2011-10-17
Reviewed by Andreas Kling.

* src/ExternalPopupMenu.cpp:
(WebKit::ExternalPopupMenu::didAcceptIndices):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (97693 => 97694)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-10-18 01:33:11 UTC (rev 97693)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-10-18 01:34:06 UTC (rev 97694)
@@ -1,3 +1,13 @@
+2011-10-17  Peter Beverloo  <[email protected]>
+
+        [Chromium] Add a missing semi-colon in ExternalPopupMenu.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=70232
+
+        Reviewed by Andreas Kling.
+
+        * src/ExternalPopupMenu.cpp:
+        (WebKit::ExternalPopupMenu::didAcceptIndices):
+
 2011-10-17  James Robinson  <[email protected]>
 
         Unreviewed, rolling out r97690.

Modified: trunk/Source/WebKit/chromium/src/ExternalPopupMenu.cpp (97693 => 97694)


--- trunk/Source/WebKit/chromium/src/ExternalPopupMenu.cpp	2011-10-18 01:33:11 UTC (rev 97693)
+++ trunk/Source/WebKit/chromium/src/ExternalPopupMenu.cpp	2011-10-18 01:34:06 UTC (rev 97694)
@@ -120,7 +120,7 @@
 #if ENABLE(NO_LISTBOX_RENDERING)
     if (!m_popupMenuClient) {
         m_webExternalPopupMenu = 0;
-        return
+        return;
     }
 
     // Calling methods on the PopupMenuClient might lead to this object being
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to