diff options
Diffstat (limited to 'kchart/kchartBackgroundPixmapConfigPage.cc')
-rw-r--r-- | kchart/kchartBackgroundPixmapConfigPage.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kchart/kchartBackgroundPixmapConfigPage.cc b/kchart/kchartBackgroundPixmapConfigPage.cc index 33bba83e..39ca1aae 100644 --- a/kchart/kchartBackgroundPixmapConfigPage.cc +++ b/kchart/kchartBackgroundPixmapConfigPage.cc @@ -181,7 +181,7 @@ void KChartBackgroundPixmapConfigPage::loadWallpaperFilesList() TQMap<TQString, TQPair<TQString, TQString> > papers; //search for .desktop files before searching for images without .desktop files - TQStringList lst = KGlobal::dirs()->findAllResources("wallpaper", "*desktop", false, true); + TQStringList lst = TDEGlobal::dirs()->findAllResources("wallpaper", "*desktop", false, true); TQStringList files; for (TQStringList::ConstIterator it = lst.begin(); it != lst.end(); ++it) { @@ -219,7 +219,7 @@ void KChartBackgroundPixmapConfigPage::loadWallpaperFilesList() } //now find any wallpapers that don't have a .desktop file - lst = KGlobal::dirs()->findAllResources("wallpaper", "*", false, true); + lst = TDEGlobal::dirs()->findAllResources("wallpaper", "*", false, true); for (TQStringList::ConstIterator it = lst.begin(); it != lst.end(); ++it) { if ( !(*it).endsWith(".desktop") && files.grep(*it).empty() ) { |