diff --git a/src/configdialog.cpp b/src/configdialog.cpp index 4e961fd..3a58470 100644 --- a/src/configdialog.cpp +++ b/src/configdialog.cpp @@ -351,7 +351,7 @@ void ConfigDialog::setupPrintingPage() { } void ConfigDialog::setupTemplatePage() { - TQPixmap pix = DesktopIcon(TQString::fromLatin1("looknfeel"), TDEIcon::SizeMedium); + TQPixmap pix = DesktopIcon(TQString::fromLatin1("preferences-desktop"), TDEIcon::SizeMedium); TQFrame* frame = addPage(i18n("Templates"), i18n("Template Options"), pix); TQVBoxLayout* l = new TQVBoxLayout(frame, KDialog::marginHint(), KDialog::spacingHint()); diff --git a/src/newstuff/dialog.cpp b/src/newstuff/dialog.cpp index 15c5b70..56f1954 100644 --- a/src/newstuff/dialog.cpp +++ b/src/newstuff/dialog.cpp @@ -162,7 +162,7 @@ Dialog::Dialog(NewStuff::DataType type_, TQWidget* parent_) TQPixmap pix; if(m_type == EntryTemplate) { - pix = DesktopIcon(TQString::fromLatin1("looknfeel"), TDEIcon::SizeLarge); + pix = DesktopIcon(TQString::fromLatin1("preferences-desktop"), TDEIcon::SizeLarge); TQWhatsThis::add(m_install, i18n("Download and install the selected template.")); } else { pix = UserIcon(TQString::fromLatin1("script")); @@ -381,7 +381,7 @@ void Dialog::slotSelected(TQListViewItem* item_) { m_lastPreviewItem = item_; } TQPixmap pix = m_type == EntryTemplate - ? DesktopIcon(TQString::fromLatin1("looknfeel"), TDEIcon::SizeLarge) + ? DesktopIcon(TQString::fromLatin1("preferences-desktop"), TDEIcon::SizeLarge) : UserIcon(TQString::fromLatin1("script")); m_iconLabel->setPixmap(pix);