diff options
Diffstat (limited to 'kate')
-rw-r--r-- | kate/app/katemailfilesdialog.cpp | 2 | ||||
-rw-r--r-- | kate/app/katemainwindow.cpp | 2 | ||||
-rw-r--r-- | kate/app/katemdi.cpp | 2 | ||||
-rw-r--r-- | kate/app/kwritemain.cpp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/kate/app/katemailfilesdialog.cpp b/kate/app/katemailfilesdialog.cpp index 858caa5f1..2d933669a 100644 --- a/kate/app/katemailfilesdialog.cpp +++ b/kate/app/katemailfilesdialog.cpp @@ -49,7 +49,7 @@ KateMailDialog::KateMailDialog( TQWidget *parent, KateMainWindow *mainwin ) KGuiItem( i18n("&Show All Documents >>") ) ), mainWindow( mainwin ) { - setButtonGuiItem( KDialogBase::Ok, KGuiItem( i18n("&Mail..."), "mail_send") ); + setButtonGuiItem( KDialogBase::Ok, KGuiItem( i18n("&Mail..."), "mail-send") ); mw = makeVBoxMainWidget(); mw->installEventFilter( this ); diff --git a/kate/app/katemainwindow.cpp b/kate/app/katemainwindow.cpp index a1b3e9045..af0617074 100644 --- a/kate/app/katemainwindow.cpp +++ b/kate/app/katemainwindow.cpp @@ -257,7 +257,7 @@ void KateMainWindow::setupActions() KStdAction::quit( TQT_TQOBJECT(this), TQT_SLOT( slotFileQuit() ), actionCollection(), "file_quit" )->setWhatsThis(i18n("Close this window")); - a=new TDEAction(i18n("&New Window"), "window_new", 0, TQT_TQOBJECT(this), TQT_SLOT(newWindow()), actionCollection(), "view_new_view"); + a=new TDEAction(i18n("&New Window"), "window-new", 0, TQT_TQOBJECT(this), TQT_SLOT(newWindow()), actionCollection(), "view_new_view"); a->setWhatsThis(i18n("Create a new Kate view (a new window with the same document list).")); if ( KateApp::self()->authorize("shell_access") ) diff --git a/kate/app/katemdi.cpp b/kate/app/katemdi.cpp index 27035d48e..adf297563 100644 --- a/kate/app/katemdi.cpp +++ b/kate/app/katemdi.cpp @@ -464,7 +464,7 @@ bool Sidebar::eventFilter(TQObject *obj, TQEvent *ev) p->insertTitle(SmallIcon("view_remove"), i18n("Behavior"), 50); - p->insertItem(w->persistent ? SmallIconSet("window_nofullscreen") : SmallIconSet("window_fullscreen"), w->persistent ? i18n("Make Non-Persistent") : i18n("Make Persistent"), 10); + p->insertItem(w->persistent ? SmallIconSet("view-restore") : SmallIconSet("view-fullscreen"), w->persistent ? i18n("Make Non-Persistent") : i18n("Make Persistent"), 10); p->insertTitle(SmallIcon("move"), i18n("Move To"), 51); diff --git a/kate/app/kwritemain.cpp b/kate/app/kwritemain.cpp index 75d494832..f427b0094 100644 --- a/kate/app/kwritemain.cpp +++ b/kate/app/kwritemain.cpp @@ -150,7 +150,7 @@ void KWrite::setupActions() actionCollection()); m_recentFiles->setWhatsThis(i18n("This lists files which you have opened recently, and allows you to easily open them again.")); - TDEAction *a=new TDEAction(i18n("&New Window"), "window_new", 0, TQT_TQOBJECT(this), TQT_SLOT(newView()), + TDEAction *a=new TDEAction(i18n("&New Window"), "window-new", 0, TQT_TQOBJECT(this), TQT_SLOT(newView()), actionCollection(), "view_new_view"); a->setWhatsThis(i18n("Create another view containing the current document")); |