PySide Bugzilla Closed for New Bugs

PySide is now a Qt Add-on and uses the Qt Project's JIRA Bug Tracker instead of this Bugzilla instance. This Bugzilla is left for reference purposes.

Bug 202 - QtGui's QMatrix multiply reverse operator for QtCore's QPoint is not working
: QtGui's QMatrix multiply reverse operator for QtCore's QPoint is not working
Status: CLOSED FIXED
Product: PySide
Classification: Unclassified
Component: PySide
: HEAD
: All All
: P5 normal
Assigned To: renato filho
:
:
:
  Show dependency treegraph
 
Reported: 2010-03-29 17:32 EEST by Marcelo Lira
Modified: 2010-05-04 18:42 EEST (History)
7 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marcelo Lira 2010-03-29 17:32:30 EEST
This breaks

p = QPoint(1, 2)
m = QMatrix(1, 2, 3, 4)
p * m

TypeError: 'PySide.QtCore.QPoint.__mul__' called with wrong argument types:
  PySide.QtCore.QPoint.__mul__(PySide.QtGui.QMatrix)
Supported signatures:
  PySide.QtCore.QPoint.__mul__(float)
  PySide.QtCore.QPoint.__mul__(float)


The reverse operator for QMatrix is not being generated at all.
Comment 1 Marcelo Lira 2010-04-01 15:22:59 EEST
Fixed in apiextractor/63415321 and shiboken/7c7d35f5.