From e78146dc377fca0b2dd50284052f6d0879c48935 Mon Sep 17 00:00:00 2001 From: kyak Date: Sun, 16 Jan 2011 00:47:27 +0300 Subject: [PATCH] qball: really drop the patch :) --- qball/patches/001-disable-mouse.patch | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 qball/patches/001-disable-mouse.patch diff --git a/qball/patches/001-disable-mouse.patch b/qball/patches/001-disable-mouse.patch deleted file mode 100644 index 6a18d6e..0000000 --- a/qball/patches/001-disable-mouse.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -ur qball-1.1.or/QBall/main.cpp qball-1.1/QBall/main.cpp ---- qball-1.1.or/QBall/main.cpp 2010-12-14 21:13:48.387821716 +0300 -+++ qball-1.1/QBall/main.cpp 2010-12-14 21:16:23.749898252 +0300 -@@ -1,6 +1,10 @@ - #include - #include "mainwindow.h" - -+#if defined(Q_WS_QWS) -+#include -+#endif -+ - int main(int argc, char *argv[]) - { - QApplication a(argc, argv); -@@ -14,6 +18,9 @@ - //w.show(); - w.showFullScreen(); - #endif -+#if defined(Q_WS_QWS) -+ QWSServer::setCursorVisible(false); -+#endif - //w.init(); - //Gamestate *gamestate = new PlayingGamestate(&w); - Gamestate *gamestate = new OptionsGamestate(&w);