From kde-commits Sat Jan 31 23:00:25 2009 From: Pino Toscano Date: Sat, 31 Jan 2009 23:00:25 +0000 To: kde-commits Subject: branches/work/konvi-kde4/src/irc Message-Id: <1233442825.094611.5891.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=123344283712706 SVN commit 919428 by pino: icons fix M +4 -4 nicklistview.cpp --- branches/work/konvi-kde4/src/irc/nicklistview.cpp #919427:919428 @@ -102,10 +102,10 @@ if (KAuthorized::authorizeKAction("allow_downloading")) { - newitem = popup->insertItem(SmallIcon("2rightarrow"),i18n("Send &File..."),Konversation::DccSend); + newitem = popup->insertItem(SmallIcon("arrow-right-double"),i18n("Send &File..."),Konversation::DccSend); popup->setWhatsThis(newitem, "Send a file to this person. If you are having problem sending files, or they are sending slowly, see the Konversation Handbook and DCC preferences page."); } - popup->insertItem(SmallIconSet("mail_generic"),i18n("&Send Email..."), Konversation::SendEmail); + popup->insertItem(SmallIconSet("mail-send"),i18n("&Send Email..."), Konversation::SendEmail); popup->addSeparator(); @@ -292,7 +292,7 @@ if(!noAssociation && existingAssociation) { - addressbook->insertItem(SmallIcon("contents"), i18n("Edit Contact..."), Konversation::AddressbookEdit); + addressbook->insertItem(SmallIcon("document-edit"), i18n("Edit Contact..."), Konversation::AddressbookEdit); addressbook->addSeparator(); } @@ -307,7 +307,7 @@ addressbook->insertItem(i18n("Create New Contact..."), Konversation::AddressbookNew); if(existingAssociation) - addressbook->insertItem(SmallIcon("editdelete"), i18n("Delete Association"), Konversation::AddressbookDelete); + addressbook->insertItem(SmallIcon("edit-delete"), i18n("Delete Association"), Konversation::AddressbookDelete); */ if(!emailAddress) popup->setItemEnabled(Konversation::SendEmail, false);