diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-13 19:55:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-13 19:55:30 +0900 |
commit | 16652efd0f5da6775487e6796493785d2602717d (patch) | |
tree | 745f15449146331a2abcb7da7fc8bddd2f29d574 /khelpcenter/docentry.cpp | |
parent | 51230c05dc0d15dd4d6e6cce1020c6bac3a5cdd3 (diff) | |
download | tdebase-16652efd0f5da6775487e6796493785d2602717d.tar.gz tdebase-16652efd0f5da6775487e6796493785d2602717d.zip |
Use TDEDesktopFile
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'khelpcenter/docentry.cpp')
-rw-r--r-- | khelpcenter/docentry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/khelpcenter/docentry.cpp b/khelpcenter/docentry.cpp index d77fce982..d3242c7d8 100644 --- a/khelpcenter/docentry.cpp +++ b/khelpcenter/docentry.cpp @@ -2,7 +2,7 @@ #include <tqfileinfo.h> #include <kdebug.h> -#include <kdesktopfile.h> +#include <tdedesktopfile.h> #include <kurl.h> #include <tdestandarddirs.h> #include <tdeapplication.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" ); |