From 549b79c4d351eb229ff61e3c7a69e13cfc898c52 Mon Sep 17 00:00:00 2001 From: Jakob Petsovits Date: Tue, 20 May 2008 14:33:04 +0000 Subject: [PATCH] Rename the rest of the user icons. Names are now ok, let's wait for pinheiro to come up with his gorgeous replacement icons :D svn path=/trunk/KDE/kdepim/kmail/pics/; revision=810352 --- kmheaders.cpp | 52 +++++++++--------- messageactions.cpp | 2 +- ...yencrypted.png => mail-encrypted-full.png} | Bin ...yencrypted.png => mail-encrypted-part.png} | Bin ...efinedencrypted.png => mail-encrypted.png} | Bin ...ic.png => mail-problematic-encryption.png} | Bin ...tic.png => mail-problematic-signature.png} | Bin ...ned-partially.png => mail-signed-part.png} | Bin 8 files changed, 27 insertions(+), 27 deletions(-) rename pics/{kmmsgfullyencrypted.png => mail-encrypted-full.png} (100%) rename pics/{kmmsgpartiallyencrypted.png => mail-encrypted-part.png} (100%) rename pics/{kmmsgundefinedencrypted.png => mail-encrypted.png} (100%) rename pics/{kmmsgencryptionproblematic.png => mail-problematic-encryption.png} (100%) rename pics/{kmmsgsignatureproblematic.png => mail-problematic-signature.png} (100%) rename pics/{mail-signed-partially.png => mail-signed-part.png} (100%) diff --git a/kmheaders.cpp b/kmheaders.cpp index 2e1a4ab04..368e026d2 100644 --- a/kmheaders.cpp +++ b/kmheaders.cpp @@ -180,32 +180,32 @@ KMHeaders::KMHeaders( KMMainWidget *aOwner, QWidget *parent ) : if (!pixmapsLoaded) { pixmapsLoaded = true; - pixNew = new QPixmap( SmallIcon( "mail-unread-new" ) ); - pixUns = new QPixmap( SmallIcon( "mail-unread" ) ); - pixDel = new QPixmap( UserIcon( "mail-deleted" ) ); - pixRead = new QPixmap( SmallIcon( "mail-read" ) ); - pixRep = new QPixmap( UserIcon( "mail-replied" ) ); - pixQueued = new QPixmap( UserIcon( "mail-queued" ) ); - pixTodo = new QPixmap( UserIcon( "mail-task" ) ); - pixSent = new QPixmap( UserIcon( "mail-sent" ) ); - pixFwd = new QPixmap( UserIcon( "mail-forwarded" ) ); - pixFlag = new QPixmap( SmallIcon( "emblem-important" ) ); - pixWatched = new QPixmap( UserIcon( "mail-thread-watch" ) ); - pixIgnored = new QPixmap( UserIcon( "mail-thread-ignored" ) ); - pixSpam = new QPixmap( UserIcon( "mail-mark-junk" ) ); - pixHam = new QPixmap( SmallIcon( "mail-mark-notjunk" ) ); - pixFullySigned = new QPixmap( UserIcon( "mail-signed-verified" ) ); - pixPartiallySigned = new QPixmap( UserIcon( "mail-signed-partially" ) ); - pixUndefinedSigned = new QPixmap( UserIcon( "mail-signed" ) ); - pixFullyEncrypted = new QPixmap( UserIcon( "kmmsgfullyencrypted" ) ); - pixPartiallyEncrypted = new QPixmap( UserIcon( "kmmsgpartiallyencrypted" ) ); - pixUndefinedEncrypted = new QPixmap( UserIcon( "kmmsgundefinedencrypted" ) ); - pixEncryptionProblematic = new QPixmap( UserIcon( "kmmsgencryptionproblematic" ) ); - pixSignatureProblematic = new QPixmap( UserIcon( "kmmsgsignatureproblematic" ) ); - pixAttachment = new QPixmap( SmallIcon( "mail-attachment" ) ); - pixReadFwd = new QPixmap( UserIcon( "mail-forwarded" ) ); - pixReadReplied = new QPixmap( UserIcon( "mail-replied" ) ); - pixReadFwdReplied = new QPixmap( UserIcon( "mail-forwarded-replied" ) ); + pixNew = new QPixmap( SmallIcon( "mail-unread-new" ) ); + pixUns = new QPixmap( SmallIcon( "mail-unread" ) ); + pixDel = new QPixmap( UserIcon( "mail-deleted" ) ); + pixRead = new QPixmap( SmallIcon( "mail-read" ) ); + pixRep = new QPixmap( UserIcon( "mail-replied" ) ); + pixQueued = new QPixmap( SmallIcon( "mail-queued" ) ); + pixTodo = new QPixmap( SmallIcon( "mail-task" ) ); + pixSent = new QPixmap( UserIcon( "mail-sent" ) ); + pixFwd = new QPixmap( UserIcon( "mail-forwarded" ) ); + pixFlag = new QPixmap( SmallIcon( "emblem-important" ) ); + pixWatched = new QPixmap( UserIcon( "mail-thread-watch" ) ); + pixIgnored = new QPixmap( UserIcon( "mail-thread-ignored" ) ); + pixSpam = new QPixmap( UserIcon( "mail-mark-junk" ) ); + pixHam = new QPixmap( SmallIcon( "mail-mark-notjunk" ) ); + pixFullySigned = new QPixmap( UserIcon( "mail-signed-verified" ) ); + pixPartiallySigned = new QPixmap( UserIcon( "mail-signed-part" ) ); + pixUndefinedSigned = new QPixmap( UserIcon( "mail-signed" ) ); + pixFullyEncrypted = new QPixmap( UserIcon( "mail-encrypted-full" ) ); + pixPartiallyEncrypted = new QPixmap( UserIcon( "mail-encrypted-part" ) ); + pixUndefinedEncrypted = new QPixmap( UserIcon( "mail-encrypted" ) ); + pixEncryptionProblematic = new QPixmap( UserIcon( "mail-problematic-encryption" ) ); + pixSignatureProblematic = new QPixmap( UserIcon( "mail-problematic-signature" ) ); + pixAttachment = new QPixmap( SmallIcon( "mail-attachment" ) ); + pixReadFwd = new QPixmap( UserIcon( "mail-forwarded" ) ); + pixReadReplied = new QPixmap( UserIcon( "mail-replied" ) ); + pixReadFwdReplied = new QPixmap( UserIcon( "mail-forwarded-replied" ) ); } header()->setStretchEnabled( false ); diff --git a/messageactions.cpp b/messageactions.cpp index e7a03dc2f..b356f7eb3 100644 --- a/messageactions.cpp +++ b/messageactions.cpp @@ -81,7 +81,7 @@ MessageActions::MessageActions( KActionCollection *ac, QWidget * parent ) : this, SLOT(slotNoQuoteReplyToMsg()) ); - mCreateTodoAction = new KAction( KIcon("view-pim-tasks"), i18n("Create To-do/Reminder..."), this ); + mCreateTodoAction = new KAction( KIcon("task-new"), i18n("Create To-do/Reminder..."), this ); mCreateTodoAction->setIconText( i18n( "Create To-do" ) ); mActionCollection->addAction( "create_todo", mCreateTodoAction ); connect( mCreateTodoAction, SIGNAL(activated()), diff --git a/pics/kmmsgfullyencrypted.png b/pics/mail-encrypted-full.png similarity index 100% rename from pics/kmmsgfullyencrypted.png rename to pics/mail-encrypted-full.png diff --git a/pics/kmmsgpartiallyencrypted.png b/pics/mail-encrypted-part.png similarity index 100% rename from pics/kmmsgpartiallyencrypted.png rename to pics/mail-encrypted-part.png diff --git a/pics/kmmsgundefinedencrypted.png b/pics/mail-encrypted.png similarity index 100% rename from pics/kmmsgundefinedencrypted.png rename to pics/mail-encrypted.png diff --git a/pics/kmmsgencryptionproblematic.png b/pics/mail-problematic-encryption.png similarity index 100% rename from pics/kmmsgencryptionproblematic.png rename to pics/mail-problematic-encryption.png diff --git a/pics/kmmsgsignatureproblematic.png b/pics/mail-problematic-signature.png similarity index 100% rename from pics/kmmsgsignatureproblematic.png rename to pics/mail-problematic-signature.png diff --git a/pics/mail-signed-partially.png b/pics/mail-signed-part.png similarity index 100% rename from pics/mail-signed-partially.png rename to pics/mail-signed-part.png