diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:54:03 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 22:44:03 +0900 |
| commit | 0008104748e6613c41d60b0545c07ed34e16ddec (patch) | |
| tree | 12b1131ace7823c35c51d7f03002ed0e9f476dbd /kmymoney2/reports/objectinfotable.cpp | |
| parent | a84f7caff6a73b3d554279d41b9a00aa15ad1400 (diff) | |
| download | kmymoney-00081047.tar.gz kmymoney-00081047.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 96c67c9b3924ab034d3d34aa03d3ea7cf0746587)
Diffstat (limited to 'kmymoney2/reports/objectinfotable.cpp')
| -rw-r--r-- | kmymoney2/reports/objectinfotable.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmymoney2/reports/objectinfotable.cpp b/kmymoney2/reports/objectinfotable.cpp index 1e80538..033ea4a 100644 --- a/kmymoney2/reports/objectinfotable.cpp +++ b/kmymoney2/reports/objectinfotable.cpp @@ -170,7 +170,7 @@ void ObjectInfoTable::constructScheduleTable ( void ) //schedule data scheduleRow["id"] = schedule.id(); scheduleRow["name"] = schedule.name(); - scheduleRow["nextduedate"] = schedule.nextDueDate().toString ( Qt::ISODate ); + scheduleRow["nextduedate"] = schedule.nextDueDate().toString ( TQt::ISODate ); scheduleRow["type"] = KMyMoneyUtils::scheduleTypeToString ( schedule.type() ); scheduleRow["occurence"] = i18n(schedule.occurenceToString().utf8()); scheduleRow["paymenttype"] = KMyMoneyUtils::paymentMethodToString ( schedule.paymentType() ); @@ -202,7 +202,7 @@ void ObjectInfoTable::constructScheduleTable ( void ) splitRow["id"] = schedule.id(); splitRow["name"] = schedule.name(); splitRow["type"] = KMyMoneyUtils::scheduleTypeToString ( schedule.type() ); - splitRow["nextduedate"] = schedule.nextDueDate().toString ( Qt::ISODate ); + splitRow["nextduedate"] = schedule.nextDueDate().toString ( TQt::ISODate ); if ( ( *split_it ).value() == MyMoneyMoney::autoCalc ) { splitRow["split"] = MyMoneyMoney::autoCalc.toString(); @@ -259,7 +259,7 @@ void ObjectInfoTable::constructAccountTable ( void ) accountRow["name"] = account.name(); accountRow["number"] = account.number(); accountRow["description"] = account.description(); - accountRow["openingdate"] = account.openingDate().toString( Qt::ISODate ); + accountRow["openingdate"] = account.openingDate().toString( TQt::ISODate ); //accountRow["currency"] = (file->currency(account.currencyId())).tradingSymbol(); accountRow["currencyname"] = (file->currency(account.currencyId())).name(); accountRow["balancewarning"] = account.value("minBalanceEarly"); @@ -320,13 +320,13 @@ void ObjectInfoTable::constructAccountLoanTable ( void ) accountRow["name"] = account.name(); accountRow["number"] = account.number(); accountRow["description"] = account.description(); - accountRow["openingdate"] = account.openingDate().toString( Qt::ISODate ); + accountRow["openingdate"] = account.openingDate().toString( TQt::ISODate ); //accountRow["currency"] = (file->currency(account.currencyId())).tradingSymbol(); accountRow["currencyname"] = (file->currency(account.currencyId())).name(); accountRow["payee"] = file->payee(loan.payee()).name(); accountRow["loanamount"] = (loan.loanAmount() * xr).toString(); accountRow["interestrate"] = (loan.interestRate(TQDate::currentDate())/MyMoneyMoney(100,1)*xr).toString(); - accountRow["nextinterestchange"] = loan.nextInterestChange().toString( Qt::ISODate ); + accountRow["nextinterestchange"] = loan.nextInterestChange().toString( TQt::ISODate ); accountRow["periodicpayment"] = (loan.periodicPayment() * xr).toString(); accountRow["finalpayment"] = (loan.finalPayment() * xr).toString(); accountRow["favorite"] = account.value("PreferredAccount"); |
