diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:28:26 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:28:26 -0600 |
commit | d3afa6baf98ef5ac191996cc9b909ff9074c168c (patch) | |
tree | a1e1247371cd17715f83036a3664755206ab9ba2 /tdeioslave | |
parent | 12f3d421cd2991c0e3f96994efb836ce244172ff (diff) | |
download | tdelibs-d3afa6baf98ef5ac191996cc9b909ff9074c168c.tar.gz tdelibs-d3afa6baf98ef5ac191996cc9b909ff9074c168c.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'tdeioslave')
-rw-r--r-- | tdeioslave/file/file.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeioslave/file/file.cc b/tdeioslave/file/file.cc index c8112c3b5..61be4a521 100644 --- a/tdeioslave/file/file.cc +++ b/tdeioslave/file/file.cc @@ -1677,7 +1677,7 @@ bool FileProtocol::pmount(const TQString &dev) bool FileProtocol::pumount(const TQString &point) { - TQString real_point = KStandardDirs::realPath(point); + TQString real_point = TDEStandardDirs::realPath(point); KMountPoint::List mtab = KMountPoint::currentMountPoints(); @@ -1690,10 +1690,10 @@ bool FileProtocol::pumount(const TQString &point) { TQString tmp = (*it)->mountedFrom(); TQString mp = (*it)->mountPoint(); - mp = KStandardDirs::realPath(mp); + mp = TDEStandardDirs::realPath(mp); if (mp==real_point) - dev = KStandardDirs::realPath(tmp); + dev = TDEStandardDirs::realPath(tmp); } if (dev.isEmpty()) return false; |