diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:05:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:05:59 -0600 |
commit | e32adbca5bcb755fbed588660b6b690089210aa6 (patch) | |
tree | ce5e108577236bc2d1a21d8773b8acf5bbfb0fa2 /src/statusbarspaceinfo.cpp | |
parent | 6d3902bd20c24613b2f13f5c04294ff83f104006 (diff) | |
download | dolphin-e32adbca5bcb755fbed588660b6b690089210aa6.tar.gz dolphin-e32adbca5bcb755fbed588660b6b690089210aa6.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
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 a93deeb..ab8b463 100644 --- a/src/statusbarspaceinfo.cpp +++ b/src/statusbarspaceinfo.cpp @@ -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)); + .arg(TDEIO::convertSizeFromKB(m_kBAvailable)); } else { if (m_gettingSize) { @@ -147,7 +147,7 @@ void StatusBarSpaceInfo::refresh() m_kBSize = 0; m_kBAvailable = 0; - const TQString mountPoint(KIO::findPathMountPoint(m_url.path())); + const TQString mountPoint(TDEIO::findPathMountPoint(m_url.path())); KDiskFreeSp* job = new KDiskFreeSp(TQT_TQOBJECT(this)); connect(job, TQT_SIGNAL(foundMountPoint(const unsigned long&, |