18 lines
998 B
Diff
18 lines
998 B
Diff
|
Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
|
||
|
===================================================================
|
||
|
--- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
|
||
|
+++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp
|
||
|
@@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c
|
||
|
#ifdef XCB_USE_XLIB
|
||
|
static bool function_ptrs_not_initialized = true;
|
||
|
if (function_ptrs_not_initialized) {
|
||
|
- QLibrary xcursorLib(QLatin1String("Xcursor"), 1);
|
||
|
+ QLibrary xcursorLib(QLatin1String("@libXcursor@/lib/libXcursor"), 1);
|
||
|
bool xcursorFound = xcursorLib.load();
|
||
|
if (!xcursorFound) { // try without the version number
|
||
|
- xcursorLib.setFileName(QLatin1String("Xcursor"));
|
||
|
+ xcursorLib.setFileName(QLatin1String("@libXcursor@/lib/Xcursor"));
|
||
|
xcursorFound = xcursorLib.load();
|
||
|
}
|
||
|
if (xcursorFound) {
|