|
|
|
|
@ -27,7 +27,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA
|
|
|
|
|
|
|
|
|
|
// KDE
|
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
#include <kdesktopfile.h>
|
|
|
|
|
#include <tdedesktopfile.h>
|
|
|
|
|
#include <tdestandarddirs.h>
|
|
|
|
|
#include <kurl.h>
|
|
|
|
|
|
|
|
|
|
@ -53,7 +53,7 @@ static Theme::List sList;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct Theme::Private {
|
|
|
|
|
KDesktopFile* mDesktopFile;
|
|
|
|
|
TDEDesktopFile* mDesktopFile;
|
|
|
|
|
KURL mURL;
|
|
|
|
|
ParameterList mParameterList;
|
|
|
|
|
|
|
|
|
|
@ -90,7 +90,7 @@ struct Theme::Private {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void init(const TQString& desktopFileName) {
|
|
|
|
|
mDesktopFile=new KDesktopFile(desktopFileName, true /*read only*/);
|
|
|
|
|
mDesktopFile=new TDEDesktopFile(desktopFileName, true /*read only*/);
|
|
|
|
|
mURL.setPath(desktopFileName);
|
|
|
|
|
|
|
|
|
|
TQStringList parameterNameList = readParameterNameList(desktopFileName);
|
|
|
|
|
|