diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 23:25:46 +0900 |
commit | cdb2c767da66815beaddd0cbceda777ddcbe9b6a (patch) | |
tree | bc07eb30a833a9bbcb2ecbfe8632f9d82c53309b /sip/qtpe/qpeapplnk.sip | |
parent | 79113dda15348e659bdf729f2c6119b2ba49d397 (diff) | |
download | pytqt-cdb2c767da66815beaddd0cbceda777ddcbe9b6a.tar.gz pytqt-cdb2c767da66815beaddd0cbceda777ddcbe9b6a.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'sip/qtpe/qpeapplnk.sip')
-rw-r--r-- | sip/qtpe/qpeapplnk.sip | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sip/qtpe/qpeapplnk.sip b/sip/qtpe/qpeapplnk.sip index 7738f0c..0216bdd 100644 --- a/sip/qtpe/qpeapplnk.sip +++ b/sip/qtpe/qpeapplnk.sip @@ -128,7 +128,7 @@ public: void add(AppLnk *); bool remove(AppLnk *); - const TQList<AppLnk> &children() const; + const TQPtrList<AppLnk> &children() const; void detachChildren(); private: @@ -146,7 +146,7 @@ public: DocLnkSet(); DocLnkSet(const TQString &,const TQString & = TQString::null); - const TQList<DocLnk> &children() const; + const TQPtrList<DocLnk> &children() const; void appendFrom(DocLnkSet &); |