diff options
Diffstat (limited to 'kppp/accounting.cpp')
-rw-r--r-- | kppp/accounting.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kppp/accounting.cpp b/kppp/accounting.cpp index 6ee8ee45..2d7ab5d7 100644 --- a/kppp/accounting.cpp +++ b/kppp/accounting.cpp @@ -67,8 +67,8 @@ static TQString timet2qstring(time_t t) { // accounting is accomplished withing it's derived classes // ///////////////////////////////////////////////////////////////////////////// -AccountingBase::AccountingBase(TQObject *tqparent) : - TQObject(tqparent), +AccountingBase::AccountingBase(TQObject *parent) : + TQObject(parent), _total(0), _session(0) { @@ -212,8 +212,8 @@ TQString AccountingBase::getAccountingFile(const TQString &accountname) { // Accounting class for ruleset files // ///////////////////////////////////////////////////////////////////////////// -Accounting::Accounting(TQObject *tqparent, PPPStats *st) : - AccountingBase(tqparent), +Accounting::Accounting(TQObject *parent, PPPStats *st) : + AccountingBase(parent), acct_timer_id(0), update_timer_id(0), stats(st) @@ -358,8 +358,8 @@ double Accounting::session() const { -ExecutableAccounting::ExecutableAccounting(PPPStats *st, TQObject *tqparent) : - AccountingBase(tqparent), +ExecutableAccounting::ExecutableAccounting(PPPStats *st, TQObject *parent) : + AccountingBase(parent), proc(0), stats(st) { |