Changeset 87297 in webkit


Ignore:
Timestamp:
May 25, 2011 9:27:30 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-05-25 Ryuan Choi <ryuan.choi@samsung.com>

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):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r87294 r87297  
     12011-05-25  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [GTK] combobox and scrollbar are rendered small size at gtk+2.22.0
     6        https://bugs.webkit.org/show_bug.cgi?id=61436
     7
     8        Fix arguments of gdk_drawable_get_size.
     9
     10        No new tests, no behavior change.
     11
     12        * platform/gtk/GtkVersioning.c:
     13        (getGdkDrawableSize):
     14
    1152011-05-23  Alexander Pavlov  <apavlov@chromium.org>
    216
  • trunk/Source/WebCore/platform/gtk/GtkVersioning.c

    r86178 r87297  
    279279void getGdkDrawableSize(GdkDrawable *drawable, int *width, int *height)
    280280{
    281     gdk_drawable_get_size(drawable, &width, &height);
     281    gdk_drawable_get_size(drawable, width, height);
    282282}
    283283#endif // GTK_CHECK_VERSION(2, 24, 0)
Note: See TracChangeset for help on using the changeset viewer.