diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:48 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 23:25:48 +0900 |
commit | f70fe735b5fee2c8fcc31e05a7fa07ca9cd7473d (patch) | |
tree | 74c48a63bcf21566b59208e46da18bcdeacf2732 | |
parent | db944412a60445214d53c8561c340d1375cbb50f (diff) | |
download | tdenetwork-f70fe735b5fee2c8fcc31e05a7fa07ca9cd7473d.tar.gz tdenetwork-f70fe735b5fee2c8fcc31e05a7fa07ca9cd7473d.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | kpf/src/KPFInterface.cpp | 4 |
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; |