summaryrefslogtreecommitdiffstats
path: root/libkscan
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:48 +0900
commit578577c47f119e6efeb0732605b27b3c5fde3020 (patch)
treeecd33450123058e20a3ffcd30c276acfd2f28a48 /libkscan
parentdeb3e1e0eb0db3113a094d63216683431c98248d (diff)
downloadtdegraphics-578577c47f119e6efeb0732605b27b3c5fde3020.tar.gz
tdegraphics-578577c47f119e6efeb0732605b27b3c5fde3020.zip
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libkscan')
-rw-r--r--libkscan/kscandevice.cpp2
1 files changed, 1 insertions, 1 deletions
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<KScanOption> */
+ /* gui_elements is a TQPtrList<KScanOption> */
for( ret = gui_elements.first(); ret != 0; ret = gui_elements.next())
{
if( ret->getName() == alias ) break;