diff options
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"); |