From 578577c47f119e6efeb0732605b27b3c5fde3020 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 17 Oct 2018 23:25:48 +0900 Subject: [PATCH] Removed obsolete Qt2's TQList/TQListIterator classes and replaced with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro --- kpovmodeler/pmdockwidget.h | 2 +- libkscan/kscandevice.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kpovmodeler/pmdockwidget.h b/kpovmodeler/pmdockwidget.h index cd7fa725..d1ebc1de 100644 --- a/kpovmodeler/pmdockwidget.h +++ b/kpovmodeler/pmdockwidget.h @@ -1115,7 +1115,7 @@ private: PMDockWidget::DockPosition curPos; /** - * A TQList of all objects that are important for docking. + * A TQPtrList of all objects that are important for docking. * Some serve as group widgets of dockwidgets, others encapsulate normal widgets. */ TQObjectList* childDock; diff --git a/libkscan/kscandevice.cpp b/libkscan/kscandevice.cpp index 9d433dcc..a4d46da5 100644 --- a/libkscan/kscandevice.cpp +++ b/libkscan/kscandevice.cpp @@ -97,7 +97,7 @@ KScanOption *KScanDevice::getExistingGuiElement( const TQCString& name ) TQCString alias = aliasName( name ); - /* gui_elements is a TQList */ + /* gui_elements is a TQPtrList */ for( ret = gui_elements.first(); ret != 0; ret = gui_elements.next()) { if( ret->getName() == alias ) break;