summaryrefslogtreecommitdiffstats
path: root/src/kvilib/core
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:58 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-10-17 23:25:58 +0900
commit489c8e07281dc55c384c88859642b778db9ba26e (patch)
tree2b78beba9cada14c040511d101b4346f89f90133 /src/kvilib/core
parente24d5b895213ff647735b747ac4560a6cf9138b7 (diff)
downloadkvirc-489c8e07281dc55c384c88859642b778db9ba26e.tar.gz
kvirc-489c8e07281dc55c384c88859642b778db9ba26e.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 'src/kvilib/core')
-rw-r--r--src/kvilib/core/kvi_pointerlist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kvilib/core/kvi_pointerlist.h b/src/kvilib/core/kvi_pointerlist.h
index 50970005..c9746c29 100644
--- a/src/kvilib/core/kvi_pointerlist.h
+++ b/src/kvilib/core/kvi_pointerlist.h
@@ -297,11 +297,11 @@ public:
/// since the list provides the autoDelete() method
/// which vould implicitly violate constness.
/// If you have to deal with const objects then
-/// you need to use a TQList instead.
+/// you need to use a TQPtrList instead.
///
/// Your objects also do not need to support copy constructors
/// or >= operators. This class will work fine without them
-/// as opposed to a plain TQList.
+/// as opposed to a plain TQPtrList.
///
/// This class also supports automatic deletion of the inseted items.
/// See the setAutoDelete() and autoDelete() members for the