diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:10:44 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:10:44 -0600 |
commit | 15c49bc5b6d612d4021619c4f71c8bca1d692e28 (patch) | |
tree | d402577f3db7642d11fd7a5276bf5e8b474ffce0 /src/knemod/interfacestatusdialog.cpp | |
parent | d979df2f36840b03425e5dc40907f16d10fe4b5c (diff) | |
download | knemo-15c49bc5b6d612d4021619c4f71c8bca1d692e28.tar.gz knemo-15c49bc5b6d612d4021619c4f71c8bca1d692e28.zip |
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/knemod/interfacestatusdialog.cpp')
-rw-r--r-- | src/knemod/interfacestatusdialog.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/knemod/interfacestatusdialog.cpp b/src/knemod/interfacestatusdialog.cpp index 0569946..93f3a15 100644 --- a/src/knemod/interfacestatusdialog.cpp +++ b/src/knemod/interfacestatusdialog.cpp @@ -141,8 +141,8 @@ void InterfaceStatusDialog::updateDialog() textLabelAlias->setText( settings.alias ); if ( data.available ) { - textLabeltqStatus->setText( i18n( "Connection established." ) ); - int upsecs = mInterface->getStartTime().secsTo( TQDateTime::tqcurrentDateTime() ); + textLabelStatus->setText( i18n( "Connection established." ) ); + int upsecs = mInterface->getStartTime().secsTo( TQDateTime::currentDateTime() ); int updays = upsecs / 86400; // don't use TQDateTime::daysTo() because // we only want complete days @@ -163,12 +163,12 @@ void InterfaceStatusDialog::updateDialog() } else if ( data.existing ) { - textLabeltqStatus->setText( i18n( "Not connected." ) ); + textLabelStatus->setText( i18n( "Not connected." ) ); textLabelUptime->setText( "00:00:00" ); } else { - textLabeltqStatus->setText( i18n( "Not existing." ) ); + textLabelStatus->setText( i18n( "Not existing." ) ); textLabelUptime->setText( "00:00:00" ); } |