mirror of
https://github.com/KDE/konsole.git
synced 2026-05-05 05:07:06 -04:00
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
This commit is contained in:
@@ -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()) );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user