diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-05 22:01:44 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-05 22:01:44 +0000 |
commit | 15c45c7b596e065fe99705e3bc0d7e80aeb2c752 (patch) | |
tree | 7900ccc11b58dcc86c63d417e50e4000373af912 /qtinterface/tqlistiterator.cpp | |
parent | c9dc3907763cbf0b0e6164d793291bd2659f1534 (diff) | |
download | tqtinterface-15c45c7b596e065fe99705e3bc0d7e80aeb2c752.tar.gz tqtinterface-15c45c7b596e065fe99705e3bc0d7e80aeb2c752.zip |
Additional Qt4 support added
Now compiles all of kdelibs/dcop, kdelibs/kdecore/svgicons, and kdelibs/kdecore/network
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/tqtinterface@1159658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtinterface/tqlistiterator.cpp')
-rw-r--r-- | qtinterface/tqlistiterator.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/qtinterface/tqlistiterator.cpp b/qtinterface/tqlistiterator.cpp index 7edad7d..031d59e 100644 --- a/qtinterface/tqlistiterator.cpp +++ b/qtinterface/tqlistiterator.cpp @@ -24,25 +24,25 @@ Boston, MA 02110-1301, USA. #ifdef USE_QT4 -template <typename T> -TQListIterator<T>::TQListIterator(const QList<T> &t) { - index = 0; - list = t; -} - -template <typename T> -TQListIterator<T>::~TQListIterator() { - // -} - -template <typename T> -T TQListIterator<T>::current() { - if ((index >= 0) && (index < list->size())) { - return list->at(index); - } - else { - return 0; - } -} +// template <typename T> +// TQListIterator<T>::TQListIterator(const QList<T> &t) { +// index = 0; +// list = t; +// } +// +// template <typename T> +// TQListIterator<T>::~TQListIterator() { +// // +// } + +// template <typename T> +// T TQListIterator<T>::current() { +// if ((index >= 0) && (index < list->size())) { +// return list->at(index); +// } +// else { +// return 0; +// } +// } #endif // USE_QT4
\ No newline at end of file |