diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:08:37 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:08:37 -0600 |
commit | b6f3912adcfbbeea3415c287426bd771cd9170b9 (patch) | |
tree | 14ae73178ff71950cd4c6452add8394a13b62afa /src/knemod/interfacetooltip.cpp | |
parent | ed6b24997e06a9a14d0f47cfbfafdd2473cf856d (diff) | |
download | knemo-b6f3912adcfbbeea3415c287426bd771cd9170b9.tar.gz knemo-b6f3912adcfbbeea3415c287426bd771cd9170b9.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'src/knemod/interfacetooltip.cpp')
-rw-r--r-- | src/knemod/interfacetooltip.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knemod/interfacetooltip.cpp b/src/knemod/interfacetooltip.cpp index 569df7c..6c84877 100644 --- a/src/knemod/interfacetooltip.cpp +++ b/src/knemod/interfacetooltip.cpp @@ -130,12 +130,12 @@ void InterfaceToolTip::setupText( TQString& text ) if ( toolTipContent & DOWNLOAD_SPEED ) { unsigned long bytesPerSecond = data.incomingBytes / mInterface->getGeneralData().pollInterval; - text += "<tr><td>" + mToolTips[20].first + "</td><td>" + KIO::convertSize( bytesPerSecond ) + i18n( "/s" ) + "</td></tr>"; + text += "<tr><td>" + mToolTips[20].first + "</td><td>" + TDEIO::convertSize( bytesPerSecond ) + i18n( "/s" ) + "</td></tr>"; } if ( toolTipContent & UPLOAD_SPEED ) { unsigned long bytesPerSecond = data.outgoingBytes / mInterface->getGeneralData().pollInterval; - text += "<tr><td>" + mToolTips[21].first + "</td><td>" + KIO::convertSize( bytesPerSecond ) + i18n( "/s" ) + "</td></tr>"; + text += "<tr><td>" + mToolTips[21].first + "</td><td>" + TDEIO::convertSize( bytesPerSecond ) + i18n( "/s" ) + "</td></tr>"; } } |