From 114015c5c84d08ec3fec37f286e09e236b54b27f Mon Sep 17 00:00:00 2001 From: Jakob Petsovits Date: Sat, 29 Dec 2007 14:44:22 +0000 Subject: [PATCH] Icon naming spec compliance (code changes - KDE/): network -> network-workgroup, or whatever fits best. Plus some other icon name fixes. svn path=/trunk/KDE/kdebase/apps/konsole/; revision=754310 --- src/MainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 82f46ff97..36f9c149d 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -172,7 +172,7 @@ void MainWindow::setupActions() // File Menu KAction* newTabAction = collection->addAction("new-tab"); - newTabAction->setIcon( KIcon("utilities-terminal") ); + newTabAction->setIcon( KIcon("tab-new") ); newTabAction->setText( i18n("New &Tab") ); newTabAction->setShortcut( QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_N) ); connect( newTabAction , SIGNAL(triggered()) , this , SLOT(newTab()) ); @@ -185,7 +185,7 @@ void MainWindow::setupActions() KAction* remoteConnectionAction = collection->addAction("remote-connection"); remoteConnectionAction->setText( i18n("Remote Connection...") ); - remoteConnectionAction->setIcon( KIcon("network") ); + remoteConnectionAction->setIcon( KIcon("network-connect") ); remoteConnectionAction->setShortcut( QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_R) ); connect( remoteConnectionAction , SIGNAL(triggered()) , this , SLOT(showRemoteConnectionDialog()) );