diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:58 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:58 -0500 |
commit | 58964048b37c52bbb841d7ec9386a75d9bf8fbc7 (patch) | |
tree | 40f0b6657d5612ef284e5992a253d823a2a432c4 /korganizer | |
parent | d59f74e30fb3df4bfd516cf813a05702acc0c801 (diff) | |
download | tdepim-58964048b37c52bbb841d7ec9386a75d9bf8fbc7.tar.gz tdepim-58964048b37c52bbb841d7ec9386a75d9bf8fbc7.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'korganizer')
-rw-r--r-- | korganizer/actionmanager.cpp | 2 | ||||
-rw-r--r-- | korganizer/calendarview.cpp | 2 | ||||
-rw-r--r-- | korganizer/filtereditdialog.cpp | 2 | ||||
-rw-r--r-- | korganizer/journalentry.cpp | 2 | ||||
-rw-r--r-- | korganizer/kodaymatrix.cpp | 2 | ||||
-rw-r--r-- | korganizer/koeditorattachments.cpp | 4 | ||||
-rw-r--r-- | korganizer/koeventeditor.cpp | 2 | ||||
-rw-r--r-- | korganizer/koeventpopupmenu.cpp | 8 | ||||
-rw-r--r-- | korganizer/kojournaleditor.cpp | 2 | ||||
-rw-r--r-- | korganizer/kotodoview.cpp | 2 | ||||
-rw-r--r-- | korganizer/plugins/exchange/exchange.cpp | 2 |
11 files changed, 15 insertions, 15 deletions
diff --git a/korganizer/actionmanager.cpp b/korganizer/actionmanager.cpp index 161614bfe..68aa0f9a2 100644 --- a/korganizer/actionmanager.cpp +++ b/korganizer/actionmanager.cpp @@ -309,7 +309,7 @@ void ActionManager::initActions() mUndoAction = KStdAction::undo( TQT_TQOBJECT(h), TQT_SLOT( undo() ), mACollection ); mRedoAction = KStdAction::redo( TQT_TQOBJECT(h), TQT_SLOT( redo() ), mACollection ); } - mDeleteAction = new TDEAction( i18n("&Delete"), "editdelete", 0, + mDeleteAction = new TDEAction( i18n("&Delete"), "edit-delete", 0, TQT_TQOBJECT(mCalendarView), TQT_SLOT( appointment_delete() ), mACollection, "edit_delete" ); if ( mIsPart ) { diff --git a/korganizer/calendarview.cpp b/korganizer/calendarview.cpp index d4d2e8b07..907603a99 100644 --- a/korganizer/calendarview.cpp +++ b/korganizer/calendarview.cpp @@ -902,7 +902,7 @@ int CalendarView::msgItemDelete( Incidence *incidence ) { return KMessageBox::warningContinueCancel(this, i18n("The item \"%1\" will be permanently deleted.").arg( incidence->summary() ), - i18n("KOrganizer Confirmation"), KGuiItem(i18n("&Delete"),"editdelete")); + i18n("KOrganizer Confirmation"), KGuiItem(i18n("&Delete"),"edit-delete")); } diff --git a/korganizer/filtereditdialog.cpp b/korganizer/filtereditdialog.cpp index cd44d9c8f..74f5a48cb 100644 --- a/korganizer/filtereditdialog.cpp +++ b/korganizer/filtereditdialog.cpp @@ -198,7 +198,7 @@ void FilterEdit::bDeletePressed() { if ( mFilters->count() <= 1 ) return; // We need at least a default filter object. int result = KMessageBox::warningContinueCancel( this, - i18n("This item will be permanently deleted."), i18n("Delete Confirmation"), KGuiItem(i18n("Delete"),"editdelete") ); + i18n("This item will be permanently deleted."), i18n("Delete Confirmation"), KGuiItem(i18n("Delete"),"edit-delete") ); if ( result != KMessageBox::Continue ) return; diff --git a/korganizer/journalentry.cpp b/korganizer/journalentry.cpp index f92ae338b..566719f30 100644 --- a/korganizer/journalentry.cpp +++ b/korganizer/journalentry.cpp @@ -211,7 +211,7 @@ JournalEntry::JournalEntry( Journal* j, TQWidget *parent ) : "entry" ) ); mDeleteButton = new TQToolButton( this, "deleteButton" ); - TQPixmap pix = KOGlobals::self()->smallIcon( "editdelete" ); + TQPixmap pix = KOGlobals::self()->smallIcon( "edit-delete" ); mDeleteButton->setPixmap( pix ); mDeleteButton->setSizePolicy( TQSizePolicy::Fixed, TQSizePolicy::Fixed ); TQToolTip::add( mDeleteButton, i18n("Delete this journal entry") ); diff --git a/korganizer/kodaymatrix.cpp b/korganizer/kodaymatrix.cpp index 1c9bc93cb..5d95b81e7 100644 --- a/korganizer/kodaymatrix.cpp +++ b/korganizer/kodaymatrix.cpp @@ -519,7 +519,7 @@ void KODayMatrix::dropEvent( TQDropEvent *e ) if ( existingEvent || existingTodo ) { menu->insertItem( i18n("Move"), DRAG_MOVE, 0 ); if (existingEvent) - menu->insertItem( KOGlobals::self()->smallIcon("editcopy"), i18n("Copy"), DRAG_COPY, 1 ); + menu->insertItem( KOGlobals::self()->smallIcon("edit-copy"), i18n("Copy"), DRAG_COPY, 1 ); } else { menu->insertItem( i18n("Add"), DRAG_MOVE, 0 ); } diff --git a/korganizer/koeditorattachments.cpp b/korganizer/koeditorattachments.cpp index 224c7bffb..4560d34f8 100644 --- a/korganizer/koeditorattachments.cpp +++ b/korganizer/koeditorattachments.cpp @@ -590,10 +590,10 @@ void KOEditorAttachments::handlePasteOrDrop( TQMimeSource* source ) } } if ( weCanCopy ) { - menu.insertItem( SmallIcon( "editcopy" ), i18n( "&Copy Here" ), DRAG_COPY, items++ ); + menu.insertItem( SmallIcon( "edit-copy" ), i18n( "&Copy Here" ), DRAG_COPY, items++ ); } } else { - menu.insertItem( SmallIcon( "editcopy" ), i18n( "&Copy Here" ), DRAG_COPY, items++ ); + menu.insertItem( SmallIcon( "edit-copy" ), i18n( "&Copy Here" ), DRAG_COPY, items++ ); } menu.insertSeparator(); diff --git a/korganizer/koeventeditor.cpp b/korganizer/koeventeditor.cpp index c31c54322..ef2dc5df9 100644 --- a/korganizer/koeventeditor.cpp +++ b/korganizer/koeventeditor.cpp @@ -390,7 +390,7 @@ int KOEventEditor::msgItemDelete() { return KMessageBox::warningContinueCancel(this, i18n("This item will be permanently deleted."), - i18n("KOrganizer Confirmation"),KGuiItem(i18n("Delete"),"editdelete")); + i18n("KOrganizer Confirmation"),KGuiItem(i18n("Delete"),"edit-delete")); } void KOEventEditor::loadTemplate( /*const*/ CalendarLocal& cal ) diff --git a/korganizer/koeventpopupmenu.cpp b/korganizer/koeventpopupmenu.cpp index ae4e4c20d..0eb2cb29a 100644 --- a/korganizer/koeventpopupmenu.cpp +++ b/korganizer/koeventpopupmenu.cpp @@ -60,16 +60,16 @@ KOEventPopupMenu::KOEventPopupMenu() //------------------------------------------------------------------------ mEditOnlyItems.append( insertSeparator() ); mEditOnlyItems.append( - insertItem( KOGlobals::self()->smallIcon("editcut"), i18n("&Cut"), + insertItem( KOGlobals::self()->smallIcon("edit-cut"), i18n("&Cut"), this, TQT_SLOT( popupCut() ) ) ); mEditOnlyItems.append( - insertItem( KOGlobals::self()->smallIcon("editcopy"), i18n("&Copy"), + insertItem( KOGlobals::self()->smallIcon("edit-copy"), i18n("&Copy"), this, TQT_SLOT( popupCopy() ) ) ); // paste is always possible - insertItem( KOGlobals::self()->smallIcon("editpaste"), i18n("&Paste"), + insertItem( KOGlobals::self()->smallIcon("edit-paste"), i18n("&Paste"), this, TQT_SLOT( popupPaste() ) ); mEditOnlyItems.append( - insertItem( KOGlobals::self()->smallIcon("editdelete"), i18n("&Delete"), + insertItem( KOGlobals::self()->smallIcon("edit-delete"), i18n("&Delete"), this, TQT_SLOT( popupDelete() ) ) ); //------------------------------------------------------------------------ mEditOnlyItems.append( insertSeparator() ); diff --git a/korganizer/kojournaleditor.cpp b/korganizer/kojournaleditor.cpp index b21146d09..fe16b470f 100644 --- a/korganizer/kojournaleditor.cpp +++ b/korganizer/kojournaleditor.cpp @@ -199,7 +199,7 @@ int KOJournalEditor::msgItemDelete() { return KMessageBox::warningContinueCancel( this, i18n("This journal entry will be permanently deleted."), - i18n("KOrganizer Confirmation"), KGuiItem( i18n("Delete"), "editdelete" )); + i18n("KOrganizer Confirmation"), KGuiItem( i18n("Delete"), "edit-delete" )); } void KOJournalEditor::modified() diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index c1e30eedd..60d22b441 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp @@ -458,7 +458,7 @@ KOTodoView::KOTodoView( Calendar *calendar, TQWidget *parent, const char* name) #ifndef KORG_NOPRINTER mItemPopupMenu->insertItem(KOGlobals::self()->smallIcon("printer1"), i18n("&Print..."), this, TQT_SLOT( printTodo() ) ); #endif - mItemPopupMenu->insertItem(KOGlobals::self()->smallIconSet("editdelete"), i18n("&Delete"), this, + mItemPopupMenu->insertItem(KOGlobals::self()->smallIconSet("edit-delete"), i18n("&Delete"), this, TQT_SLOT (deleteTodo()), 0, ePopupDelete ); mItemPopupMenu->insertSeparator(); mItemPopupMenu->insertItem(KOGlobals::self()->smallIconSet("todo"), i18n("New &To-do..."), this, diff --git a/korganizer/plugins/exchange/exchange.cpp b/korganizer/plugins/exchange/exchange.cpp index 1adefd207..e0bc1ab7e 100644 --- a/korganizer/plugins/exchange/exchange.cpp +++ b/korganizer/plugins/exchange/exchange.cpp @@ -165,7 +165,7 @@ void Exchange::remove() return; } - if ( KMessageBox::warningContinueCancel( 0L, i18n("Exchange Delete is EXPERIMENTAL, if this is a recurring event it will delete all instances!"), i18n("Exchange Plugin"), KGuiItem(i18n("&Delete"),"editdelete") ) + if ( KMessageBox::warningContinueCancel( 0L, i18n("Exchange Delete is EXPERIMENTAL, if this is a recurring event it will delete all instances!"), i18n("Exchange Plugin"), KGuiItem(i18n("&Delete"),"edit-delete") ) == KMessageBox::Continue ) { kdDebug(5850) << "Trying to delete appointment " << event->summary() << endl; int result = mClient->removeSynchronous( event ); |