diff options
4 files changed, 4 insertions, 4 deletions
diff --git a/kopete/kopete/config/accounts/kopete_accountconfig.desktop b/kopete/kopete/config/accounts/kopete_accountconfig.desktop index ea2e7974..0bc2b66f 100644 --- a/kopete/kopete/config/accounts/kopete_accountconfig.desktop +++ b/kopete/kopete/config/accounts/kopete_accountconfig.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Icon=personal +Icon=preferences-desktop-personal Type=Service X-TDE-ServiceTypes=TDECModule diff --git a/kopete/kopete/config/appearance/kopete_appearanceconfig.desktop b/kopete/kopete/config/appearance/kopete_appearanceconfig.desktop index aa923fcb..c7738d75 100644 --- a/kopete/kopete/config/appearance/kopete_appearanceconfig.desktop +++ b/kopete/kopete/config/appearance/kopete_appearanceconfig.desktop @@ -1,5 +1,5 @@ [Desktop Entry] -Icon=looknfeel +Icon=preferences-desktop Type=Service X-TDE-ServiceTypes=TDECModule diff --git a/kopete/kopete/kopetewindow.cpp b/kopete/kopete/kopetewindow.cpp index dc3e8a06..63633f0a 100644 --- a/kopete/kopete/kopetewindow.cpp +++ b/kopete/kopete/kopetewindow.cpp @@ -280,7 +280,7 @@ void KopeteWindow::initActions() statusbarAction = KStdAction::showStatusbar(TQT_TQOBJECT(this), TQT_SLOT(showStatusbar()), actionCollection(), "settings_showstatusbar"); KStdAction::keyBindings( guiFactory(), TQT_SLOT( configureShortcuts() ), actionCollection(), "settings_keys" ); - new TDEAction( i18n( "Configure Plugins..." ), "input_devices_settings", 0, TQT_TQOBJECT(this), + new TDEAction( i18n( "Configure Plugins..." ), "preferences-desktop-peripherals", 0, TQT_TQOBJECT(this), TQT_SLOT( slotConfigurePlugins() ), actionCollection(), "settings_plugins" ); new TDEAction( i18n( "Configure &Global Shortcuts..." ), "configure_shortcuts", 0, TQT_TQOBJECT(this), TQT_SLOT( slotConfGlobalKeys() ), actionCollection(), "settings_global" ); diff --git a/kopete/protocols/winpopup/wpaddcontact.cpp b/kopete/protocols/winpopup/wpaddcontact.cpp index 10f7df71..43be67ac 100644 --- a/kopete/protocols/winpopup/wpaddcontact.cpp +++ b/kopete/protocols/winpopup/wpaddcontact.cpp @@ -77,7 +77,7 @@ void WPAddContact::slotSelected(const TQString &Group) TQString ownHost = theAccount->myself()->contactId(); TQStringList::ConstIterator end = Hosts.end(); for (TQStringList::ConstIterator i = Hosts.begin(); i != end; i++) - if (*i != ownHost) theDialog->mHostName->insertItem(SmallIcon("personal"), *i); + if (*i != ownHost) theDialog->mHostName->insertItem(SmallIcon("preferences-desktop-personal"), *i); } bool WPAddContact::validateData() |