diff options
Diffstat (limited to 'kmymoney2/mymoney/mymoneyaccount.cpp')
-rw-r--r-- | kmymoney2/mymoney/mymoneyaccount.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kmymoney2/mymoney/mymoneyaccount.cpp b/kmymoney2/mymoney/mymoneyaccount.cpp index b41e04a..5d74e62 100644 --- a/kmymoney2/mymoney/mymoneyaccount.cpp +++ b/kmymoney2/mymoney/mymoneyaccount.cpp @@ -105,7 +105,7 @@ MyMoneyAccount::MyMoneyAccount(const TQDomElement& node) : setDescription(node.attribute("description")); m_id = TQStringEmpty(node.attribute("id")); - // qDebug("Account %s has id of %s, type of %d, tqparent is %s.", acc.name().data(), id.data(), type, acc.parentAccountId().data()); + // qDebug("Account %s has id of %s, type of %d, parent is %s.", acc.name().data(), id.data(), type, acc.parentAccountId().data()); // Process any Sub-Account information found inside the account entry. m_accountList.clear(); @@ -168,9 +168,9 @@ void MyMoneyAccount::setLastReconciliationDate(const TQDate& date) m_lastReconciliationDate = date; } -void MyMoneyAccount::setParentAccountId(const TQString& tqparent) +void MyMoneyAccount::setParentAccountId(const TQString& parent) { - m_parentAccount = tqparent; + m_parentAccount = parent; } void MyMoneyAccount::setAccountType(const accountTypeE type) @@ -475,7 +475,7 @@ int MyMoneyAccountLoan::interestCompounding(void) const return value("compoundingFrequency").toInt(); } -void MyMoneyAccount::writeXML(TQDomDocument& document, TQDomElement& tqparent) const +void MyMoneyAccount::writeXML(TQDomDocument& document, TQDomElement& parent) const { TQDomElement el = document.createElement("ACCOUNT"); @@ -529,7 +529,7 @@ void MyMoneyAccount::writeXML(TQDomDocument& document, TQDomElement& tqparent) c //Add in Key-Value Pairs for accounts. MyMoneyKeyValueContainer::writeXML(document, el); - tqparent.appendChild(el); + parent.appendChild(el); } bool MyMoneyAccount::hasReferenceTo(const TQString& id) const |