From cdb2c767da66815beaddd0cbceda777ddcbe9b6a Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 17 Oct 2018 23:25:46 +0900 Subject: Removed obsolete Qt2's TQList/TQListIterator classes and replaced with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro --- doc/PyQt.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'doc/PyQt.html') diff --git a/doc/PyQt.html b/doc/PyQt.html index c004474..5c3cf29 100644 --- a/doc/PyQt.html +++ b/doc/PyQt.html @@ -5145,12 +5145,12 @@ CLASS="SECT2" CLASS="SECT2" >TQList<type> (TQt v2)TQPtrList<type> (TQt v2)

Types based on the TQListTQPtrList template are automatically converted to and from Python lists of the type.

TQList<TQToolBar> toolBarsTQPtrList<TQToolBar> toolBars(ToolBarDock dock);

TQList<TQTab> tabListTQPtrList<TQTab> tabList();

TQPixmapArray(TQList<TQPixmap> pixmaps, TQList<TQPoint> hotspots);

(TQPtrList<TQPixmap> pixmaps, TQPtrList<TQPoint> hotspots);