summaryrefslogtreecommitdiffstats
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
commitf70fe735b5fee2c8fcc31e05a7fa07ca9cd7473d (patch)
tree74c48a63bcf21566b59208e46da18bcdeacf2732
parentdb944412a60445214d53c8561c340d1375cbb50f (diff)
downloadtdenetwork-f70fe735.tar.gz
tdenetwork-f70fe735.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>
-rw-r--r--kpf/src/KPFInterface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kpf/src/KPFInterface.cpp b/kpf/src/KPFInterface.cpp
index 47e4acef..2541dd83 100644
--- a/kpf/src/KPFInterface.cpp
+++ b/kpf/src/KPFInterface.cpp
@@ -40,11 +40,11 @@ KPFInterface::~KPFInterface()
TQStringList
KPFInterface::serverRootList()
{
- TQList<KPF::WebServer> l(KPF::WebServerManager::instance()->serverListLocal());
+ TQPtrList<KPF::WebServer> l(KPF::WebServerManager::instance()->serverListLocal());
TQStringList ret;
- for (TQListIterator<KPF::WebServer> it(l); it.current(); ++it)
+ for (TQPtrListIterator<KPF::WebServer> it(l); it.current(); ++it)
ret << it.current()->root();
return ret;