Title: [87297] trunk/Source/WebCore
Revision
87297
Author
[email protected]
Date
2011-05-25 09:27:30 -0700 (Wed, 25 May 2011)

Log Message

2011-05-25  Ryuan Choi  <[email protected]>

        Reviewed by Xan Lopez.

        [GTK] combobox and scrollbar are rendered small size at gtk+2.22.0
        https://bugs.webkit.org/show_bug.cgi?id=61436

        Fix arguments of gdk_drawable_get_size.

        No new tests, no behavior change.

        * platform/gtk/GtkVersioning.c:
        (getGdkDrawableSize):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (87296 => 87297)


--- trunk/Source/WebCore/ChangeLog	2011-05-25 14:58:32 UTC (rev 87296)
+++ trunk/Source/WebCore/ChangeLog	2011-05-25 16:27:30 UTC (rev 87297)
@@ -1,3 +1,17 @@
+2011-05-25  Ryuan Choi  <[email protected]>
+
+        Reviewed by Xan Lopez.
+
+        [GTK] combobox and scrollbar are rendered small size at gtk+2.22.0
+        https://bugs.webkit.org/show_bug.cgi?id=61436
+
+        Fix arguments of gdk_drawable_get_size.
+
+        No new tests, no behavior change.
+
+        * platform/gtk/GtkVersioning.c:
+        (getGdkDrawableSize):
+
 2011-05-23  Alexander Pavlov  <[email protected]>
 
         Reviewed by Yury Semikhatsky.

Modified: trunk/Source/WebCore/platform/gtk/GtkVersioning.c (87296 => 87297)


--- trunk/Source/WebCore/platform/gtk/GtkVersioning.c	2011-05-25 14:58:32 UTC (rev 87296)
+++ trunk/Source/WebCore/platform/gtk/GtkVersioning.c	2011-05-25 16:27:30 UTC (rev 87297)
@@ -278,7 +278,7 @@
 #else
 void getGdkDrawableSize(GdkDrawable *drawable, int *width, int *height)
 {
-    gdk_drawable_get_size(drawable, &width, &height);
+    gdk_drawable_get_size(drawable, width, height);
 }
 #endif // GTK_CHECK_VERSION(2, 24, 0)
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to