diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 23:25:55 +0900 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2022-03-20 18:47:19 +0100 |
commit | 9757aeb46efff389c2b118cb373206d0720235cd (patch) | |
tree | 2625096cbb63704c5d22d16a73ecf194a29e255d /kmymoney2/mymoney/storage/mymoneystoragesql.cpp | |
parent | fdf40193a31ed1193c2ddf329ddc58011028a048 (diff) | |
download | kmymoney-9757aeb46efff389c2b118cb373206d0720235cd.tar.gz kmymoney-9757aeb46efff389c2b118cb373206d0720235cd.zip |
Removed obsolete Qt2's TQList/TQListIterator classes and replaced
with TQt3's TQPtrList/TQPtrListIterator ones.
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 38f46e7137a77df91eb38133921f6536d847ba81)
Diffstat (limited to 'kmymoney2/mymoney/storage/mymoneystoragesql.cpp')
-rw-r--r-- | kmymoney2/mymoney/storage/mymoneystoragesql.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/kmymoney2/mymoney/storage/mymoneystoragesql.cpp b/kmymoney2/mymoney/storage/mymoneystoragesql.cpp index d1f56b2..5a9dc95 100644 --- a/kmymoney2/mymoney/storage/mymoneystoragesql.cpp +++ b/kmymoney2/mymoney/storage/mymoneystoragesql.cpp @@ -4160,8 +4160,6 @@ const TQString MyMoneyDbDef::generateSQL (const TQString& driver) const { MyMoneyDbTable::field_iterator act; // do the following in reverse so the 'formatted' fields are // correctly handled. - // Hmm, how does one use a TQValueListIterator in reverse - // It'll be okay in TQt4 with TQListIterator for (act = ac.end(), --act; act != ac.begin(); --act) { TQString toReplace = (*act)->name(); toReplace.prepend(':'); |