diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2009-04-26 21:39:56 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2009-04-26 21:39:56 +0000 |
commit | 7dd45e7a5cc25c6786f70b26e125b15817df25a7 (patch) | |
tree | 0a39a17b55639a460d8eef802f38a29a2972cc6f /dev-python/PyQt4/files | |
parent | Bump to 2.2.4. Remove old revisions. (diff) | |
download | gentoo-2-7dd45e7a5cc25c6786f70b26e125b15817df25a7.tar.gz gentoo-2-7dd45e7a5cc25c6786f70b26e125b15817df25a7.tar.bz2 gentoo-2-7dd45e7a5cc25c6786f70b26e125b15817df25a7.zip |
Added qt-xmlpatterns as dependency. Apply patch from but #267012
(Portage version: 2.2_rc31/cvs/Linux x86_64)
Diffstat (limited to 'dev-python/PyQt4/files')
-rw-r--r-- | dev-python/PyQt4/files/PyQt4-4.4.4-qgraphicsproxywidget-avoid-event-callback-loop.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-python/PyQt4/files/PyQt4-4.4.4-qgraphicsproxywidget-avoid-event-callback-loop.patch b/dev-python/PyQt4/files/PyQt4-4.4.4-qgraphicsproxywidget-avoid-event-callback-loop.patch new file mode 100644 index 000000000000..9c811b849ec5 --- /dev/null +++ b/dev-python/PyQt4/files/PyQt4-4.4.4-qgraphicsproxywidget-avoid-event-callback-loop.patch @@ -0,0 +1,16 @@ +diff -Nurp PyQt-x11-gpl-4.4.4.orig/sip/QtGui/qgraphicsproxywidget.sip PyQt-x11-gpl-4.4.4/sip/QtGui/qgraphicsproxywidget.sip +--- PyQt-x11-gpl-4.4.4.orig/sip/QtGui/qgraphicsproxywidget.sip 2008-11-08 12:55:56.000000000 +0100 ++++ PyQt-x11-gpl-4.4.4/sip/QtGui/qgraphicsproxywidget.sip 2009-04-21 21:59:09.938689971 +0200 +@@ -87,6 +87,12 @@ protected: + virtual void mousePressEvent(QGraphicsSceneMouseEvent *event); + virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); + virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event); ++ ++ virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event); ++ virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event); ++ virtual void dragMoveEvent(QGraphicsSceneDragDropEvent *event); ++ virtual void dropEvent(QGraphicsSceneDragDropEvent *event); ++ + virtual void wheelEvent(QGraphicsSceneWheelEvent *event); + virtual void keyPressEvent(QKeyEvent *event); + virtual void keyReleaseEvent(QKeyEvent *event); |