diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 23:25:46 +0900 |
commit | cdb2c767da66815beaddd0cbceda777ddcbe9b6a (patch) | |
tree | bc07eb30a833a9bbcb2ecbfe8632f9d82c53309b /sip/qtcanvas | |
parent | 79113dda15348e659bdf729f2c6119b2ba49d397 (diff) | |
download | pytqt-cdb2c767da66815beaddd0cbceda777ddcbe9b6a.tar.gz pytqt-cdb2c767da66815beaddd0cbceda777ddcbe9b6a.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'sip/qtcanvas')
-rw-r--r-- | sip/qtcanvas/qcanvas.sip | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sip/qtcanvas/qcanvas.sip b/sip/qtcanvas/qcanvas.sip index fb14a63..c005233 100644 --- a/sip/qtcanvas/qcanvas.sip +++ b/sip/qtcanvas/qcanvas.sip @@ -65,8 +65,8 @@ the return type of a function or the type of an argument, a Python list of <Sect2><Title>TQCanvasPixmapArray (TQt v2.2+)</Title> <FuncSynopsis> <FuncDef><Function>TQPixmapArray</Function></FuncDef> - <ParamDef>TQList<TQPixmap> <Parameter>pixmaps</Parameter></ParamDef> - <ParamDef>TQList<TQPoint> <Parameter>hotspots</Parameter></ParamDef> + <ParamDef>TQPtrList<TQPixmap> <Parameter>pixmaps</Parameter></ParamDef> + <ParamDef>TQPtrList<TQPoint> <Parameter>hotspots</Parameter></ParamDef> </FuncSynopsis> <Para> The <Literal>pixmaps</Literal> argument is a Python list of TQPixmap instances, |