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 /doc/PyQt.sgml | |
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 'doc/PyQt.sgml')
-rw-r--r-- | doc/PyQt.sgml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/PyQt.sgml b/doc/PyQt.sgml index 5c05ae9..ac788e7 100644 --- a/doc/PyQt.sgml +++ b/doc/PyQt.sgml @@ -2594,9 +2594,9 @@ This takes no parameters and returns the bool result and the (TQt v3+) </Para> </Sect2> -<Sect2><Title>TQList<type> (TQt v2)</Title> +<Sect2><Title>TQPtrList<type> (TQt v2)</Title> <Para> -Types based on the <Literal>TQList</Literal> template are automatically +Types based on the <Literal>TQPtrList</Literal> template are automatically converted to and from Python lists of the type. </Para> </Sect2> @@ -2768,7 +2768,7 @@ result, <Literal>dock</Literal>, <Literal>index</Literal>, </Para> <FuncSynopsis> - <FuncDef>TQList<TQToolBar> <Function>toolBars</Function></FuncDef> + <FuncDef>TQPtrList<TQToolBar> <Function>toolBars</Function></FuncDef> <ParamDef>ToolBarDock <Parameter>dock</Parameter></ParamDef> </FuncSynopsis> <Para> @@ -3997,7 +3997,7 @@ This takes only the <Literal>t</Literal> parameter and returns a tuple of the <Sect2><Title>TQTabBar</Title> <FuncSynopsis> - <FuncDef>TQList<TQTab> <Function>tabList</Function></FuncDef> + <FuncDef>TQPtrList<TQTab> <Function>tabList</Function></FuncDef> <ParamDef></ParamDef> </FuncSynopsis> <Para> @@ -4789,8 +4789,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, |