Opened 14 years ago
Closed 13 years ago
#218 closed defect (fixed)
Missing QFont::handle() body
Reported by: | Dmitry A. Kuminov | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | Qt 4.7 |
Component: | QtGui | Version: | 4.6.3 |
Severity: | low | Keywords: | |
Cc: |
Description
Yuri has just found out (when building pythonqt) that we miss the body of the QFont::handle() funciton. This function is really not used by any of the ported applications or by Qt itself and pythonqt references it just because it creates wrappers for all methods it finds in .h files.
Nevertheless, we should provide a body for it to be in line with other platforms.
Change History (2)
comment:1 by , 14 years ago
comment:2 by , 13 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Fixed in r881.
Yuri, I doubt that there is the same problem with QRect/QRectF: these classes don't have such operators. What they have is friend declarations of global equal/not-equal operators that could be misinterpreted as class methods by the python wrapper creation script.
Please check this and feel free to reopen this ticket if you still feel like it's a Qt problem.
It seems the same problem is present with QRect/QRectF equal/not-equal operators.