diff options
Diffstat (limited to 'khelpcenter/docentry.cpp')
-rw-r--r-- | khelpcenter/docentry.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/khelpcenter/docentry.cpp b/khelpcenter/docentry.cpp index 220ed0f93..d3242c7d8 100644 --- a/khelpcenter/docentry.cpp +++ b/khelpcenter/docentry.cpp @@ -2,9 +2,9 @@ #include <tqfileinfo.h> #include <kdebug.h> -#include <kdesktopfile.h> +#include <tdedesktopfile.h> #include <kurl.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> #include <tdeapplication.h> #include "prefs.h" @@ -204,7 +204,7 @@ bool DocEntry::isDirectory() const bool DocEntry::readFromFile( const TQString &fileName ) { - KDesktopFile file( fileName ); + TDEDesktopFile file( fileName ); mName = file.readName(); mSearch = file.readEntry( "X-DOC-Search" ); @@ -345,4 +345,3 @@ void DocEntry::dump() const kdDebug() << " <documenttype>" << mDocumentType << "</documenttype>" << endl; kdDebug() << " </docentry>" << endl; } -// vim:ts=2:sw=2:et |