[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

loislo at chromium.org loislo at chromium.org
Wed Dec 22 12:26:06 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit c2d11e7f8b221849e0d7efc4e38de09cffce6703
Author: loislo at chromium.org <loislo at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 23 16:54:14 2010 +0000

    2010-08-23  Ilya Tikhonovsky  <loislo at chromium.org>
    
            Reviewed by Pavel Feldman.
    
            WebInspector: Context menu in Scripts panel was broken.
            https://bugs.webkit.org/show_bug.cgi?id=44431
    
            * inspector/InspectorFrontendHost.cpp:
            (WebCore::FrontendMenuProvider::contextMenuItemSelected):
            (WebCore::FrontendMenuProvider::contextMenuCleared):
    
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65816 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7300a1c..2ef4f14 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-23  Ilya Tikhonovsky  <loislo at chromium.org>
+
+        Reviewed by Pavel Feldman.
+
+        WebInspector: Context menu in Scripts panel was broken.
+        https://bugs.webkit.org/show_bug.cgi?id=44431
+
+        * inspector/InspectorFrontendHost.cpp:
+        (WebCore::FrontendMenuProvider::contextMenuItemSelected):
+        (WebCore::FrontendMenuProvider::contextMenuCleared):
+
 2010-08-23  Andreas Kling  <andreas.kling at nokia.com>
 
         Reviewed by Tor Arne Vestbø.
diff --git a/WebCore/inspector/InspectorFrontendHost.cpp b/WebCore/inspector/InspectorFrontendHost.cpp
index f9bf176..8dc00ae 100644
--- a/WebCore/inspector/InspectorFrontendHost.cpp
+++ b/WebCore/inspector/InspectorFrontendHost.cpp
@@ -92,8 +92,7 @@ private:
         if (m_frontendHost) {
             int itemNumber = item->action() - ContextMenuItemBaseCustomTag;
 
-            ScriptFunctionCall function(m_webInspector, "dispatch");
-            function.appendArgument("contextMenuItemSelected");
+            ScriptFunctionCall function(m_webInspector, "contextMenuItemSelected");
             function.appendArgument(itemNumber);
             function.call();
         }
@@ -102,8 +101,7 @@ private:
     virtual void contextMenuCleared()
     {
         if (m_frontendHost) {
-            ScriptFunctionCall function(m_webInspector, "dispatch");
-            function.appendArgument("contextMenuCleared");
+            ScriptFunctionCall function(m_webInspector, "contextMenuCleared");
             function.call();
 
             m_frontendHost->m_menuProvider = 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list