Browse Source

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
rocklinux
Rene Rebe 22 years ago
parent
commit
e3409554f4
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      package/rene/koffice/kword-table-resize-mouse-cursor.patch

+ 2
- 2
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;

Loading…
Cancel
Save