summaryrefslogtreecommitdiffstats
path: root/tdeioslave/remote/remoteimpl.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-13 19:55:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-13 19:55:30 +0900
commit16652efd0f5da6775487e6796493785d2602717d (patch)
tree745f15449146331a2abcb7da7fc8bddd2f29d574 /tdeioslave/remote/remoteimpl.cpp
parent51230c05dc0d15dd4d6e6cce1020c6bac3a5cdd3 (diff)
downloadtdebase-16652efd0f5da6775487e6796493785d2602717d.tar.gz
tdebase-16652efd0f5da6775487e6796493785d2602717d.zip
Use TDEDesktopFile
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeioslave/remote/remoteimpl.cpp')
-rw-r--r--tdeioslave/remote/remoteimpl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeioslave/remote/remoteimpl.cpp b/tdeioslave/remote/remoteimpl.cpp
index 4f11381ed..659273834 100644
--- a/tdeioslave/remote/remoteimpl.cpp
+++ b/tdeioslave/remote/remoteimpl.cpp
@@ -22,7 +22,7 @@
#include <kdebug.h>
#include <tdeglobalsettings.h>
#include <tdestandarddirs.h>
-#include <kdesktopfile.h>
+#include <tdedesktopfile.h>
#include <kservice.h>
#include <tdelocale.h>
@@ -140,7 +140,7 @@ KURL RemoteImpl::findBaseURL(const TQString &filename) const
TQString file = findDesktopFile(filename);
if (!file.isEmpty())
{
- KDesktopFile desktop(file, true);
+ TDEDesktopFile desktop(file, true);
return desktop.readURL();
}
@@ -219,7 +219,7 @@ void RemoteImpl::createEntry(TDEIO::UDSEntry &entry,
kdDebug(1220) << "RemoteImpl::createEntry" << endl;
TQString desktopPath(directory + file);
- KDesktopFile desktop(desktopPath, true);
+ TDEDesktopFile desktop(desktopPath, true);
kdDebug(1220) << "path = " << directory << file << endl;
@@ -289,7 +289,7 @@ bool RemoteImpl::renameFolders(const TQString &src, const TQString &dest,
bool res = dir.rename(src+".desktop", dest+".desktop");
if (res)
{
- KDesktopFile desktop(directory+dest+".desktop");
+ TDEDesktopFile desktop(directory+dest+".desktop");
desktop.writeEntry("Name", dest);
}
return res;