Title: [94101] trunk/Source/WebCore
Revision
94101
Author
[email protected]
Date
2011-08-30 13:17:09 -0700 (Tue, 30 Aug 2011)

Log Message

[Qt] Replace QLibrary("libgtk-x11-2.0.so.0") with QLibrary("libgtk-x11-2.0", 0)
https://bugs.webkit.org/show_bug.cgi?id=66627

Patch by Dawit Alemayehu <[email protected]> on 2011-08-30
Reviewed by Simon Hausmann.

* plugins/qt/PluginPackageQt.cpp:
(WebCore::initializeGtk):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (94100 => 94101)


--- trunk/Source/WebCore/ChangeLog	2011-08-30 20:10:34 UTC (rev 94100)
+++ trunk/Source/WebCore/ChangeLog	2011-08-30 20:17:09 UTC (rev 94101)
@@ -1,3 +1,13 @@
+2011-08-30  Dawit Alemayehu  <[email protected]>
+
+        [Qt] Replace QLibrary("libgtk-x11-2.0.so.0") with QLibrary("libgtk-x11-2.0", 0)
+        https://bugs.webkit.org/show_bug.cgi?id=66627
+
+        Reviewed by Simon Hausmann.
+
+        * plugins/qt/PluginPackageQt.cpp:
+        (WebCore::initializeGtk):
+
 2011-08-29  Oliver Hunt  <[email protected]>
 
         TypedArrays don't ensure that denormalised values are normalised

Modified: trunk/Source/WebCore/plugins/qt/PluginPackageQt.cpp (94100 => 94101)


--- trunk/Source/WebCore/plugins/qt/PluginPackageQt.cpp	2011-08-30 20:10:34 UTC (rev 94100)
+++ trunk/Source/WebCore/plugins/qt/PluginPackageQt.cpp	2011-08-30 20:17:09 UTC (rev 94101)
@@ -121,7 +121,7 @@
         }
     }
 
-    QLibrary library(QLatin1String("libgtk-x11-2.0.so.0"));
+    QLibrary library(QLatin1String("libgtk-x11-2.0"), 0);
     if (library.load()) {
         typedef void *(*gtk_init_check_ptr)(int*, char***);
         gtk_init_check_ptr gtkInitCheck = (gtk_init_check_ptr)library.resolve("gtk_init_check");
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to