summaryrefslogtreecommitdiffstats
path: root/kpf/src
diff options
context:
space:
mode:
Diffstat (limited to 'kpf/src')
-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;