From c64ad6b6403df7bf2fa679ccc4591fcde0326991 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Sat, 29 Mar 2014 10:49:14 +0100 Subject: [PATCH] [kwin] KWinrules needs the X11Cursor Fixes crash when trying to detect the window properties. --- cursor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cursor.cpp b/cursor.cpp index 20ab785e4c..e8c9f40455 100644 --- a/cursor.cpp +++ b/cursor.cpp @@ -50,7 +50,7 @@ Cursor *Cursor::create(QObject *parent) s_self = new InputRedirectionCursor(parent); } #else - Q_UNUSED(parent) + s_self = new X11Cursor(parent); #endif return s_self; }