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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 14:47:18 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit c18dbad545b4927d920684cbd85f88d5cf25424c
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 20 08:04:56 2010 +0000

    2010-10-20  Luiz Agostini  <luiz.agostini at openbossa.org>
    
            Reviewed by Antonio Gomes.
    
            [Qt] Wrong null check in PopupMenuQt
            https://bugs.webkit.org/show_bug.cgi?id=47945
    
            Wrong null check in PopupMenuQt.
    
            * WebCoreSupport/PopupMenuQt.cpp:
            (WebCore::PopupMenuQt::hide):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70134 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index 96bae5e..c1bf664 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,15 @@
+2010-10-20  Luiz Agostini  <luiz.agostini at openbossa.org>
+
+        Reviewed by Antonio Gomes.
+
+        [Qt] Wrong null check in PopupMenuQt
+        https://bugs.webkit.org/show_bug.cgi?id=47945
+
+        Wrong null check in PopupMenuQt.
+
+        * WebCoreSupport/PopupMenuQt.cpp:
+        (WebCore::PopupMenuQt::hide):
+
 2010-10-18  Viatcheslav Ostapenko  <ostapenko.viatcheslav at nokia.com>
 
         Reviewed by Laszlo Gombos.
diff --git a/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp b/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp
index 56a0fac..9b34955 100644
--- a/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp
+++ b/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp
@@ -127,7 +127,7 @@ void PopupMenuQt::didHide()
 
 void PopupMenuQt::hide()
 {
-    if (!m_popup)
+    if (m_popup)
         m_popup->hide();
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list