mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
711 B

  1. Qt-3.1.2 does not has this swapped cursors ...
  2. - Rene Rebe <rene@rocklinux.org>
  3. --- koffice-1.2.94/kword/kwdoc.cc 2003-10-27 14:21:55.000000000 +0100
  4. +++ koffice-1.2.94-fixed/kword/kwdoc.cc 2003-12-10 08:05:39.000000000 +0100
  5. @@ -3278,13 +3278,13 @@
  6. return Qt::sizeVerCursor;
  7. case MEANING_RESIZE_COLUMN:
  8. // Bug in (at least) Qt-3.1.1 : Qt::splitVCursor and Qt::splitHCursor are swapped!
  9. -#if QT_VERSION < 0x030200
  10. +#if QT_VERSION < 0x030101
  11. return Qt::splitVCursor;
  12. #else
  13. return Qt::splitHCursor;
  14. #endif
  15. case MEANING_RESIZE_ROW:
  16. -#if QT_VERSION < 0x030200
  17. +#if QT_VERSION < 0x030101
  18. return Qt::splitHCursor;
  19. #else
  20. return Qt::splitVCursor;