Changeset 65586 in webkit


Ignore:
Timestamp:
Aug 17, 2010 8:53:08 PM (14 years ago)
Author:
Girish Ramakrishnan
Message:

Reviewed by Antonio Gomes.

[Qt] On Maemo5, there is no libgdk-x11-2.0.so symlink. Look for
libgdk-x11-2.0.so.0 instead on X11 and Maemo5.

https://bugs.webkit.org/show_bug.cgi?id=44043

  • plugins/qt/PluginViewQt.cpp:

(WebCore::getPluginDisplay):

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r65580 r65586  
     12010-08-17  Girish Ramakrishnan  <girish@forwardbias.in>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] On Maemo5, there is no libgdk-x11-2.0.so symlink. Look for
     6        libgdk-x11-2.0.so.0 instead on X11 and Maemo5.
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=44043
     9
     10        * plugins/qt/PluginViewQt.cpp:
     11        (WebCore::getPluginDisplay):
     12
    1132010-08-17  Ariya Hidayat  <ariya@sencha.com>
    214
  • trunk/WebCore/plugins/qt/PluginViewQt.cpp

    r62185 r65586  
    663663    // The code below has the same effect as this one:
    664664    // Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default());
    665     QLibrary library("libgdk-x11-2.0");
     665    QLibrary library("libgdk-x11-2.0.so.0");
    666666    if (!library.load())
    667667        return 0;
Note: See TracChangeset for help on using the changeset viewer.