summaryrefslogtreecommitdiffstats
path: root/korganizer
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:12 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:12 -0500
commit3774bd2643f8009fe6046bb721bccb3dce7bb92b (patch)
treede5bcde3a2c09526331608ae1faf7d95bc146e9c /korganizer
parent58964048b37c52bbb841d7ec9386a75d9bf8fbc7 (diff)
downloadtdepim-3774bd2643f8009fe6046bb721bccb3dce7bb92b.tar.gz
tdepim-3774bd2643f8009fe6046bb721bccb3dce7bb92b.zip
Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance
Diffstat (limited to 'korganizer')
-rw-r--r--korganizer/actionmanager.cpp14
-rw-r--r--korganizer/koagendaitem.cpp2
-rw-r--r--korganizer/koattendeeeditor.cpp2
-rw-r--r--korganizer/koeditorfreebusy.cpp4
-rw-r--r--korganizer/koeventpopupmenu.cpp2
-rw-r--r--korganizer/komonthview.cpp2
6 files changed, 13 insertions, 13 deletions
diff --git a/korganizer/actionmanager.cpp b/korganizer/actionmanager.cpp
index 68aa0f9a2..f8a4e4ad6 100644
--- a/korganizer/actionmanager.cpp
+++ b/korganizer/actionmanager.cpp
@@ -403,16 +403,16 @@ void ActionManager::initActions()
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ZOOM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// TODO: try to find / create better icons for the following 4 actions
- new TDEAction( i18n( "Zoom In Horizontally" ), "viewmag+", 0,
+ new TDEAction( i18n( "Zoom In Horizontally" ), "zoom-in", 0,
mCalendarView->viewManager(), TQT_SLOT( zoomInHorizontally() ),
mACollection, "zoom_in_horizontally" );
- new TDEAction( i18n( "Zoom Out Horizontally" ), "viewmag-", 0,
+ new TDEAction( i18n( "Zoom Out Horizontally" ), "zoom-out", 0,
mCalendarView->viewManager(), TQT_SLOT( zoomOutHorizontally() ),
mACollection, "zoom_out_horizontally" );
- new TDEAction( i18n( "Zoom In Vertically" ), "viewmag+", 0,
+ new TDEAction( i18n( "Zoom In Vertically" ), "zoom-in", 0,
mCalendarView->viewManager(), TQT_SLOT( zoomInVertically() ),
mACollection, "zoom_in_vertically" );
- new TDEAction( i18n( "Zoom Out Vertically" ), "viewmag-", 0,
+ new TDEAction( i18n( "Zoom Out Vertically" ), "zoom-out", 0,
mCalendarView->viewManager(), TQT_SLOT( zoomOutVertically() ),
mACollection, "zoom_out_vertically" );
@@ -495,7 +495,7 @@ void ActionManager::initActions()
//************************** SCHEDULE MENU ********************************
- mPublishEvent = new TDEAction( i18n("&Publish Item Information..."), "mail_send", 0,
+ mPublishEvent = new TDEAction( i18n("&Publish Item Information..."), "mail-send", 0,
TQT_TQOBJECT(mCalendarView), TQT_SLOT( schedule_publish() ),
mACollection, "schedule_publish" );
mPublishEvent->setEnabled( false );
@@ -523,7 +523,7 @@ void ActionManager::initActions()
mSendCancel, TQT_SLOT(setEnabled(bool)) );
mSendStatusUpdate = new TDEAction( i18n( "Send Status &Update" ),
- "mail_reply", 0,
+ "mail-reply-sender", 0,
TQT_TQOBJECT(mCalendarView),TQT_SLOT(schedule_reply()),
mACollection, "schedule_reply" );
mSendStatusUpdate->setEnabled( false );
@@ -537,7 +537,7 @@ void ActionManager::initActions()
connect( mCalendarView, TQT_SIGNAL(groupEventsSelected(bool)),
mRequestChange, TQT_SLOT(setEnabled(bool)) );
- mForwardEvent = new TDEAction( i18n("&Send as iCalendar..."), "mail_forward", 0,
+ mForwardEvent = new TDEAction( i18n("&Send as iCalendar..."), "mail-forward", 0,
TQT_TQOBJECT(mCalendarView), TQT_SLOT(schedule_forward()),
mACollection, "schedule_forward" );
mForwardEvent->setEnabled( false );
diff --git a/korganizer/koagendaitem.cpp b/korganizer/koagendaitem.cpp
index b1117737b..b0a237748 100644
--- a/korganizer/koagendaitem.cpp
+++ b/korganizer/koagendaitem.cpp
@@ -758,7 +758,7 @@ void KOAgendaItem::paintEvent( TQPaintEvent *ev )
alarmPxmp = new TQPixmap( KOGlobals::self()->smallIcon("bell") );
recurPxmp = new TQPixmap( KOGlobals::self()->smallIcon("recur") );
readonlyPxmp = new TQPixmap( KOGlobals::self()->smallIcon("readonlyevent") );
- replyPxmp = new TQPixmap( KOGlobals::self()->smallIcon("mail_reply") );
+ replyPxmp = new TQPixmap( KOGlobals::self()->smallIcon("mail-reply-sender") );
groupPxmp = new TQPixmap( KOGlobals::self()->smallIcon("groupevent") );
groupPxmpTentative = new TQPixmap( KOGlobals::self()->smallIcon("groupeventtentative") );
organizerPxmp = new TQPixmap( KOGlobals::self()->smallIcon("organizer") );
diff --git a/korganizer/koattendeeeditor.cpp b/korganizer/koattendeeeditor.cpp
index 4ef9d38d3..d948a07a2 100644
--- a/korganizer/koattendeeeditor.cpp
+++ b/korganizer/koattendeeeditor.cpp
@@ -146,7 +146,7 @@ void KOAttendeeEditor::initEditWidgets(TQWidget * parent, TQBoxLayout * layout)
mStatusCombo->insertItem( KOGlobals::self()->smallIcon( "ok" ), Attendee::statusName( Attendee::Accepted ) );
mStatusCombo->insertItem( KOGlobals::self()->smallIcon( "no" ), Attendee::statusName( Attendee::Declined ) );
mStatusCombo->insertItem( KOGlobals::self()->smallIcon( "apply" ), Attendee::statusName( Attendee::Tentative ) );
- mStatusCombo->insertItem( KOGlobals::self()->smallIcon( "mail_forward" ), Attendee::statusName( Attendee::Delegated ) );
+ mStatusCombo->insertItem( KOGlobals::self()->smallIcon( "mail-forward" ), Attendee::statusName( Attendee::Delegated ) );
mStatusCombo->insertItem( Attendee::statusName( Attendee::Completed ) );
mStatusCombo->insertItem( KOGlobals::self()->smallIcon( "help" ), Attendee::statusName( Attendee::InProcess ) );
diff --git a/korganizer/koeditorfreebusy.cpp b/korganizer/koeditorfreebusy.cpp
index 69c1f566f..0ee9d4f8c 100644
--- a/korganizer/koeditorfreebusy.cpp
+++ b/korganizer/koeditorfreebusy.cpp
@@ -147,7 +147,7 @@ void FreeBusyItem::updateItem()
setPixmap( 0, KOGlobals::self()->smallIcon( "apply" ) );
break;
case Attendee::Delegated:
- setPixmap( 0, KOGlobals::self()->smallIcon( "mail_forward" ) );
+ setPixmap( 0, KOGlobals::self()->smallIcon( "mail-forward" ) );
break;
default:
setPixmap( 0, TQPixmap() );
@@ -906,7 +906,7 @@ void KOEditorFreeBusy::showAttendeeStatusMenu()
popup.insertItem( KOGlobals::self()->smallIcon( "ok" ), Attendee::statusName( Attendee::Accepted ), Attendee::Accepted );
popup.insertItem( KOGlobals::self()->smallIcon( "no" ), Attendee::statusName( Attendee::Declined ), Attendee::Declined );
popup.insertItem( KOGlobals::self()->smallIcon( "apply" ), Attendee::statusName( Attendee::Tentative ), Attendee::Tentative );
- popup.insertItem( KOGlobals::self()->smallIcon( "mail_forward" ), Attendee::statusName( Attendee::Delegated ), Attendee::Delegated );
+ popup.insertItem( KOGlobals::self()->smallIcon( "mail-forward" ), Attendee::statusName( Attendee::Delegated ), Attendee::Delegated );
popup.insertItem( Attendee::statusName( Attendee::Completed ), Attendee::Completed );
popup.insertItem( KOGlobals::self()->smallIcon( "help" ), Attendee::statusName( Attendee::InProcess ), Attendee::InProcess );
popup.setItemChecked( currentAttendee()->status(), true );
diff --git a/korganizer/koeventpopupmenu.cpp b/korganizer/koeventpopupmenu.cpp
index 0eb2cb29a..6ab281828 100644
--- a/korganizer/koeventpopupmenu.cpp
+++ b/korganizer/koeventpopupmenu.cpp
@@ -86,7 +86,7 @@ KOEventPopupMenu::KOEventPopupMenu()
this, TQT_SLOT( dissociateFutureOccurrence() ) ) );
insertSeparator();
- insertItem( KOGlobals::self()->smallIcon("mail_forward"), i18n( "Send as iCalendar..."),
+ insertItem( KOGlobals::self()->smallIcon("mail-forward"), i18n( "Send as iCalendar..."),
this, TQT_SLOT(forward()) );
}
diff --git a/korganizer/komonthview.cpp b/korganizer/komonthview.cpp
index c75523a9c..ab61181ca 100644
--- a/korganizer/komonthview.cpp
+++ b/korganizer/komonthview.cpp
@@ -207,7 +207,7 @@ MonthViewItem::MonthViewItem( Incidence *incidence, const TQDateTime &qd,
mTodoDonePixmap = KOGlobals::self()->smallIcon( "checkedbox" );
mAlarmPixmap = KOGlobals::self()->smallIcon( "bell" );
mRecurPixmap = KOGlobals::self()->smallIcon( "recur" );
- mReplyPixmap = KOGlobals::self()->smallIcon( "mail_reply" );
+ mReplyPixmap = KOGlobals::self()->smallIcon( "mail-reply-sender" );
mEvent = false;
mTodo = false;