diff options
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>"; } } |