diff options
Diffstat (limited to 'kmymoney2/mymoney/mymoneyaccount.cpp')
-rw-r--r-- | kmymoney2/mymoney/mymoneyaccount.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kmymoney2/mymoney/mymoneyaccount.cpp b/kmymoney2/mymoney/mymoneyaccount.cpp index c35c257..d8139d3 100644 --- a/kmymoney2/mymoney/mymoneyaccount.cpp +++ b/kmymoney2/mymoney/mymoneyaccount.cpp @@ -82,7 +82,7 @@ MyMoneyAccount::MyMoneyAccount(const TQDomElement& node) : // to be ok for now. (ipwizard - 2008-08-14) TQString txt = MyMoneyKeyValueContainer(node.elementsByTagName("KEYVALUEPAIRS").item(0).toElement()).value("lastStatementDate"); if(!txt.isEmpty()) { - setLastReconciliationDate(TQDate::fromString(txt, Qt::ISODate)); + setLastReconciliationDate(TQDate::fromString(txt, TQt::ISODate)); } } @@ -168,7 +168,7 @@ void MyMoneyAccount::setLastReconciliationDate(const TQDate& date) // keep the last reconciliation date also in the KVP for backward // compatability. After that, the setValue() statemetn should be removed // and the XML ctor should remove the value completely from the KVP - setValue("lastStatementDate", date.toString(Qt::ISODate)); + setValue("lastStatementDate", date.toString(TQt::ISODate)); m_lastReconciliationDate = date; } @@ -360,7 +360,7 @@ const TQDate MyMoneyAccountLoan::nextInterestChange(void) const void MyMoneyAccountLoan::setNextInterestChange(const TQDate& date) { - setValue("interest-nextchange", date.toString(Qt::ISODate)); + setValue("interest-nextchange", date.toString(TQt::ISODate)); } int MyMoneyAccountLoan::interestChangeFrequency(int* unit) const |