about summary refs log tree commit diff
path: root/other
diff options
context:
space:
mode:
authorPaweł Jastrzębski <pawelj@vulturis.eu>2014-01-17 12:34:05 +0100
committerPaweł Jastrzębski <pawelj@vulturis.eu>2014-01-17 12:34:05 +0100
commitb0c6315feefb3a265ff1870f06a1c5b442ec9bc5 (patch)
treebe8ad14afa0a6ad3e810fb43426f37a48978d776 /other
parentUpdated OSX setup (diff)
downloadkcc-b0c6315feefb3a265ff1870f06a1c5b442ec9bc5.tar.gz
kcc-b0c6315feefb3a265ff1870f06a1c5b442ec9bc5.tar.bz2
kcc-b0c6315feefb3a265ff1870f06a1c5b442ec9bc5.zip
Updated Windows setup + OSX fix
Diffstat (limited to 'other')
-rw-r--r--other/QT-4.8.5-QListWidget.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/other/QT-4.8.5-QListWidget.patch b/other/QT-4.8.5-QListWidget.patch
deleted file mode 100644
index 130e562..0000000
--- a/other/QT-4.8.5-QListWidget.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- qt-4.8.5/src/gui/kernel/qwidget_mac.mm	2013-06-07 07:16:59.000000000 +0200
-+++ qt-4.8.5-fix/src/gui/kernel/qwidget_mac.mm	2013-10-11 23:00:15.000000000 +0200
-@@ -4715,15 +4715,13 @@ void QWidgetPrivate::scroll_sys(int dx, 
-     }
- 
-     // Scroll the whole widget if qscrollRect is not valid:
--    QRect validScrollRect = qscrollRect.isValid() ? qscrollRect : q->rect();
--    validScrollRect &= clipRect();
-+    QRect validScrollRect = qscrollRect.isValid() ? qscrollRect : QRect(0, 0, q->width(), q->height());
- 
-     // If q is overlapped by other widgets, we cannot just blit pixels since
-     // this will move overlapping widgets as well. In case we just update:
-     const bool overlapped = isOverlapped(validScrollRect.translated(data.crect.topLeft()));
-     const bool accelerateScroll = accelEnv && isOpaque && !overlapped;
-     const bool isAlien = (q->internalWinId() == 0);
--    const QPoint scrollDelta(dx, dy);
- 
-     // If qscrollRect is valid, we are _not_ supposed to scroll q's children (as documented).
-     // But we do scroll children (and the whole of q) if qscrollRect is invalid. This case is
-@@ -4745,7 +4743,6 @@ void QWidgetPrivate::scroll_sys(int dx, 
-         }else {
-             update_sys(qscrollRect);
-         }
--        return;
-     }
- 
- #ifdef QT_MAC_USE_COCOA
-@@ -4762,6 +4759,7 @@ void QWidgetPrivate::scroll_sys(int dx, 
-     // moved when the parent is scrolled. All directly or indirectly moved
-     // children will receive a move event before the function call returns.
-     QWidgetList movedChildren;
-+    const QPoint scrollDelta(dx, dy);
-     if (scrollChildren) {
-         QObjectList children = q->children();
-