diff options
author | Timothy Pearson <[email protected]> | 2011-12-16 09:55:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-16 09:55:43 -0600 |
commit | b45817ccac7985d286c754b95f40eda5e105efda (patch) | |
tree | 428da987d342b841c1b05adb50cfc12b45b40a14 /src/statusbarspaceinfo.cpp | |
parent | 59d9dbf810de71334e1173fa7dda59209c10032c (diff) | |
download | dolphin-b45817ccac7985d286c754b95f40eda5e105efda.tar.gz dolphin-b45817ccac7985d286c754b95f40eda5e105efda.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 59d9dbf810de71334e1173fa7dda59209c10032c.
Diffstat (limited to 'src/statusbarspaceinfo.cpp')
-rw-r--r-- | src/statusbarspaceinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statusbarspaceinfo.cpp b/src/statusbarspaceinfo.cpp index 16eb36b..87feaa3 100644 --- a/src/statusbarspaceinfo.cpp +++ b/src/statusbarspaceinfo.cpp @@ -64,7 +64,7 @@ void StatusBarSpaceInfo::paintEvent(TQPaintEvent* /* event */) const int widthDec = 3; // visual decrement for the available width - const TQColor c1 = colorGroup().background(); + const TQColor c1 = tqcolorGroup().background(); const TQColor c2 = KGlobalSettings::buttonTextColor(); const TQColor frameColor((c1.red() + c2.red()) / 2, (c1.green() + c2.green()) / 2, @@ -90,7 +90,7 @@ void StatusBarSpaceInfo::paintEvent(TQPaintEvent* /* event */) painter.drawRect(TQRect(left, barTop + 2, right, barHeight - 2)); text = i18n("%1 free") - .arg(KIO::convertSizeFromKB(m_kBAvailable)); + .tqarg(KIO::convertSizeFromKB(m_kBAvailable)); } else { if (m_gettingSize) { |