diff --git a/korganizer/journalentry.cpp b/korganizer/journalentry.cpp index 566719f3..0ceec954 100644 --- a/korganizer/journalentry.cpp +++ b/korganizer/journalentry.cpp @@ -229,7 +229,7 @@ JournalEntry::JournalEntry( Journal* j, TQWidget *parent ) : #ifndef KORG_NOPRINTER mPrintButton = new TQToolButton( this, "printButton" ); - mPrintButton->setPixmap( KOGlobals::self()->smallIcon( "printer1" ) ); + mPrintButton->setPixmap( KOGlobals::self()->smallIcon( "printer" ) ); mPrintButton->setSizePolicy( TQSizePolicy::Fixed, TQSizePolicy::Fixed ); TQToolTip::add( mPrintButton, i18n("Print this journal entry") ); TQWhatsThis::add( mPrintButton, i18n("Opens the print dialog for this journal entry") ); diff --git a/korganizer/koeventpopupmenu.cpp b/korganizer/koeventpopupmenu.cpp index 6ab28182..73a0942e 100644 --- a/korganizer/koeventpopupmenu.cpp +++ b/korganizer/koeventpopupmenu.cpp @@ -54,7 +54,7 @@ KOEventPopupMenu::KOEventPopupMenu() mEditOnlyItems.append( insertItem(i18n("&Edit..."), this, TQT_SLOT( popupEdit() ) ) ); #ifndef KORG_NOPRINTER - insertItem( KOGlobals::self()->smallIcon("printer1"), i18n("&Print..."), + insertItem( KOGlobals::self()->smallIcon("printer"), i18n("&Print..."), this, TQT_SLOT( print() ) ); #endif //------------------------------------------------------------------------ diff --git a/korganizer/kotodoview.cpp b/korganizer/kotodoview.cpp index 60d22b44..8ae2703f 100644 --- a/korganizer/kotodoview.cpp +++ b/korganizer/kotodoview.cpp @@ -456,7 +456,7 @@ KOTodoView::KOTodoView( Calendar *calendar, TQWidget *parent, const char* name) mItemPopupMenu->insertItem(i18n("&Edit..."), this, TQT_SLOT (editTodo()), 0, ePopupEdit ); #ifndef KORG_NOPRINTER - mItemPopupMenu->insertItem(KOGlobals::self()->smallIcon("printer1"), i18n("&Print..."), this, TQT_SLOT( printTodo() ) ); + mItemPopupMenu->insertItem(KOGlobals::self()->smallIcon("printer"), i18n("&Print..."), this, TQT_SLOT( printTodo() ) ); #endif mItemPopupMenu->insertItem(KOGlobals::self()->smallIconSet("edit-delete"), i18n("&Delete"), this, TQT_SLOT (deleteTodo()), 0, ePopupDelete );