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

hausmann at webkit.org hausmann at webkit.org
Wed Dec 22 13:21:02 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 862069ce3100f65f5bd87d0372fda189d4a407d6
Author: hausmann at webkit.org <hausmann at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Sep 12 14:47:42 2010 +0000

    Gtk build fix.
    
    Use false instead of False after
    http://trac.webkit.org/changeset/67323
    
    * plugins/gtk/PluginViewGtk.cpp:
    (WebCore::PluginView::updatePluginWidget):
    (WebCore::PluginView::paint):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67327 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 5dda20f..6b707cd 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,16 @@
 2010-09-12  Simon Hausmann  <simon.hausmann at nokia.com>
 
+        Gtk build fix.
+
+        Use false instead of False after
+        http://trac.webkit.org/changeset/67323
+
+        * plugins/gtk/PluginViewGtk.cpp:
+        (WebCore::PluginView::updatePluginWidget):
+        (WebCore::PluginView::paint):
+
+2010-09-12  Simon Hausmann  <simon.hausmann at nokia.com>
+
         Reviewed by Andreas Kling.
 
         [Qt] Fix the compilation of V8Binding.cpp when compiling with Qt.
diff --git a/WebCore/plugins/gtk/PluginViewGtk.cpp b/WebCore/plugins/gtk/PluginViewGtk.cpp
index 6d631e3..bee7821 100644
--- a/WebCore/plugins/gtk/PluginViewGtk.cpp
+++ b/WebCore/plugins/gtk/PluginViewGtk.cpp
@@ -143,7 +143,7 @@ void PluginView::updatePluginWidget()
         m_drawable = XCreatePixmap(GDK_DISPLAY(), getRootWindow(m_parentFrame.get()),
                                    m_windowRect.width(), m_windowRect.height(),
                                    ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth);
-        XSync(GDK_DISPLAY(), False); // make sure that the server knows about the Drawable
+        XSync(GDK_DISPLAY(), false); // make sure that the server knows about the Drawable
     }
 #endif
 
@@ -265,7 +265,7 @@ void PluginView::paint(GraphicsContext* context, const IntRect& rect)
     dispatchNPEvent(xevent);
 
     if (syncX)
-        XSync(m_pluginDisplay, False); // sync changes by plugin
+        XSync(m_pluginDisplay, false); // sync changes by plugin
 
     cairo_t* cr = context->platformContext();
     cairo_save(cr);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list