diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:48:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:48:31 -0600 |
commit | c48e769eb275917717e2b55eb869f7e559293ac8 (patch) | |
tree | 8f650b907e21c918b826f854dbe1c8174cc2c0c6 /kppp/pppstatdlg.cpp | |
parent | 8011d84f483f3628f3f04ea5cb2c1c3c86b2dba7 (diff) | |
download | tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.tar.gz tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kppp/pppstatdlg.cpp')
-rw-r--r-- | kppp/pppstatdlg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kppp/pppstatdlg.cpp b/kppp/pppstatdlg.cpp index 4a816121..073d3f55 100644 --- a/kppp/pppstatdlg.cpp +++ b/kppp/pppstatdlg.cpp @@ -286,12 +286,12 @@ void PPPStatsDlg::paintGraph() { // plot scale line p.setPen(text); - p.setFont(TQFont(KGlobalSettings::fixedFont().family(), 8)); + p.setFont(TQFont(TDEGlobalSettings::fixedFont().family(), 8)); TQRect r; TQString s = i18n("%1 (max. %2) kb/sec") - .arg(KGlobal::locale()->formatNumber((float)last_max / 1024.0, 1)) - .arg(KGlobal::locale()->formatNumber((float)max / 1024.0, 1)); + .arg(TDEGlobal::locale()->formatNumber((float)last_max / 1024.0, 1)) + .arg(TDEGlobal::locale()->formatNumber((float)max / 1024.0, 1)); p.drawText(0, 0, pm.width(), 2*8, AlignRight|AlignVCenter, s, -1, &r); p.drawLine(0, 8, r.left() - 8, 8); @@ -378,12 +378,12 @@ void PPPStatsDlg::closeEvent(TQCloseEvent *) { void PPPStatsDlg::update_data() { timeclick(); - ibytes_string = KGlobal::locale()->formatNumber(stats->ibytes, 0); + ibytes_string = TDEGlobal::locale()->formatNumber(stats->ibytes, 0); ipackets_string.setNum(stats->ipackets); compressedin_string.setNum(stats->compressedin); uncompressedin_string.setNum(stats->uncompressedin); errorin_string.setNum(stats->errorin); - obytes_string = KGlobal::locale()->formatNumber(stats->obytes, 0); + obytes_string = TDEGlobal::locale()->formatNumber(stats->obytes, 0); opackets_string.setNum(stats->opackets); compressed_string.setNum(stats->compressed); packetsunc_string.setNum(stats->packetsunc); |