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

xan at webkit.org xan at webkit.org
Wed Dec 22 12:58:40 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 5bbeb2dbe4f8c2233de954e0a89980824315ecd4
Author: xan at webkit.org <xan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 3 12:42:47 2010 +0000

    2010-09-03  Xan Lopez  <xlopez at igalia.com>
    
            Reviewed by Gustavo Noronha.
    
            Dialog separators are gone in GTK+ 3.x.
    
            * webkit/webkitsoupauthdialog.c:
            (show_auth_dialog):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66725 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/gtk/ChangeLog b/WebKit/gtk/ChangeLog
index 209feaa..9435afc 100644
--- a/WebKit/gtk/ChangeLog
+++ b/WebKit/gtk/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-03  Xan Lopez  <xlopez at igalia.com>
+
+        Reviewed by Gustavo Noronha.
+
+        Dialog separators are gone in GTK+ 3.x.
+
+        * webkit/webkitsoupauthdialog.c:
+        (show_auth_dialog):
+
 2010-09-02  Yury Semikhatsky  <yurys at chromium.org>
 
         Reviewed by Pavel Feldman.
diff --git a/WebKit/gtk/webkit/webkitsoupauthdialog.c b/WebKit/gtk/webkit/webkitsoupauthdialog.c
index daecc73..0cf1c23 100644
--- a/WebKit/gtk/webkit/webkitsoupauthdialog.c
+++ b/WebKit/gtk/webkit/webkitsoupauthdialog.c
@@ -213,7 +213,9 @@ static void show_auth_dialog(WebKitAuthData* authData, const char* login, const
                            NULL);
 
     /* Set the dialog up with HIG properties */
+#ifdef GTK_API_VERSION_2
     gtk_dialog_set_has_separator(dialog, FALSE);
+#endif
     gtk_container_set_border_width(GTK_CONTAINER(dialog), 5);
     gtk_box_set_spacing(GTK_BOX(gtk_dialog_get_content_area(dialog)), 2); /* 2 * 5 + 2 = 12 */
     gtk_container_set_border_width(GTK_CONTAINER(gtk_dialog_get_action_area(dialog)), 5);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list