diff options
Diffstat (limited to 'tdeioslave/system/systemimpl.cpp')
-rw-r--r-- | tdeioslave/system/systemimpl.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tdeioslave/system/systemimpl.cpp b/tdeioslave/system/systemimpl.cpp index 21a9da7da..52f1ace36 100644 --- a/tdeioslave/system/systemimpl.cpp +++ b/tdeioslave/system/systemimpl.cpp @@ -21,8 +21,8 @@ #include <kdebug.h> #include <tdeglobalsettings.h> -#include <kstandarddirs.h> -#include <kdesktopfile.h> +#include <tdestandarddirs.h> +#include <tdedesktopfile.h> #include <tqapplication.h> #include <tqeventloop.h> @@ -169,7 +169,7 @@ KURL SystemImpl::findBaseURL(const TQString &filename) const { if (*name==filename+".desktop") { - KDesktopFile desktop(*dirpath+filename+".desktop", true); + TDEDesktopFile desktop(*dirpath+filename+".desktop", true); if ( desktop.readURL().isEmpty() ) { KURL url; @@ -226,7 +226,7 @@ TQString SystemImpl::readPathINL(TQString filename) line = s.readLine(); } if (isPathExpanded == false) { - KDesktopFile desktop(filename, true); + TDEDesktopFile desktop(filename, true); return desktop.readPath(); } else { @@ -240,7 +240,7 @@ void SystemImpl::createEntry(TDEIO::UDSEntry &entry, { kdDebug() << "SystemImpl::createEntry" << endl; - KDesktopFile desktop(directory+file, true); + TDEDesktopFile desktop(directory+file, true); kdDebug() << "path = " << directory << file << endl; @@ -279,12 +279,12 @@ void SystemImpl::createEntry(TDEIO::UDSEntry &entry, m_lastListingEmpty = true; TDEIO::ListJob *job = TDEIO::listDir(url, false, false); - connect( job, TQT_SIGNAL( entries(TDEIO::Job *, + connect( job, TQ_SIGNAL( entries(TDEIO::Job *, const TDEIO::UDSEntryList &) ), - this, TQT_SLOT( slotEntries(TDEIO::Job *, + this, TQ_SLOT( slotEntries(TDEIO::Job *, const TDEIO::UDSEntryList &) ) ); - connect( job, TQT_SIGNAL( result(TDEIO::Job *) ), - this, TQT_SLOT( slotResult(TDEIO::Job *) ) ); + connect( job, TQ_SIGNAL( result(TDEIO::Job *) ), + this, TQ_SLOT( slotResult(TDEIO::Job *) ) ); tqApp->eventLoop()->enterLoop(); if (m_lastListingEmpty) icon = empty_icon; |