From e3409554f49beb0bdc296fb507eb9855a8b805c3 Mon Sep 17 00:00:00 2001 From: Rene Rebe Date: Fri, 12 Dec 2003 23:35:33 +0000 Subject: [PATCH] well - sorry for that typo - a more correct fix :-) git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1969 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc --- package/rene/koffice/kword-table-resize-mouse-cursor.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/rene/koffice/kword-table-resize-mouse-cursor.patch b/package/rene/koffice/kword-table-resize-mouse-cursor.patch index 4e29305d3..ce61860db 100644 --- a/package/rene/koffice/kword-table-resize-mouse-cursor.patch +++ b/package/rene/koffice/kword-table-resize-mouse-cursor.patch @@ -10,14 +10,14 @@ Qt-3.1.2 does not has this swapped cursors ... case MEANING_RESIZE_COLUMN: // Bug in (at least) Qt-3.1.1 : Qt::splitVCursor and Qt::splitHCursor are swapped! -#if QT_VERSION < 0x030200 -+#if QT_VERSION < 0x030101 ++#if QT_VERSION < 0x030102 return Qt::splitVCursor; #else return Qt::splitHCursor; #endif case MEANING_RESIZE_ROW: -#if QT_VERSION < 0x030200 -+#if QT_VERSION < 0x030101 ++#if QT_VERSION < 0x030102 return Qt::splitHCursor; #else return Qt::splitVCursor;