From 0008104748e6613c41d60b0545c07ed34e16ddec Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 5 Nov 2023 11:54:03 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro (cherry picked from commit 96c67c9b3924ab034d3d34aa03d3ea7cf0746587) --- kmymoney2/dialogs/transactionmatcher.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kmymoney2/dialogs/transactionmatcher.cpp') diff --git a/kmymoney2/dialogs/transactionmatcher.cpp b/kmymoney2/dialogs/transactionmatcher.cpp index ecf54eb..ad3262b 100644 --- a/kmymoney2/dialogs/transactionmatcher.cpp +++ b/kmymoney2/dialogs/transactionmatcher.cpp @@ -178,7 +178,7 @@ void TransactionMatcher::match(MyMoneyTransaction tm, MyMoneySplit sm, MyMoneyTr // We use the imported postdate and keep the previous one for unmatch if(tm.postDate() != ti.postDate()) { - sm.setValue("kmm-orig-postdate", tm.postDate().toString(Qt::ISODate)); + sm.setValue("kmm-orig-postdate", tm.postDate().toString(TQt::ISODate)); tm.setPostDate(ti.postDate()); } @@ -221,7 +221,7 @@ void TransactionMatcher::unmatch(const MyMoneyTransaction& _t, const MyMoneySpli // restore the postdate if modified if(!sm.value("kmm-orig-postdate").isEmpty()) { - tm.setPostDate(TQDate::fromString(sm.value("kmm-orig-postdate"), Qt::ISODate)); + tm.setPostDate(TQDate::fromString(sm.value("kmm-orig-postdate"), TQt::ISODate)); } // restore payee if modified -- cgit v1.2.1