summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2020-07-24 16:08:06 +0200
committerMichele Calgaro <[email protected]>2020-08-02 20:52:43 +0900
commit3c9d9149daf8db4be91e5eacfbd6aaab4f801def (patch)
tree435d52351a66ae8a90b0702fe32998bffb80e333
parente431d847103e516fcd44c5baee27784fe5768129 (diff)
downloadcodeine-3c9d9149daf8db4be91e5eacfbd6aaab4f801def.tar.gz
codeine-3c9d9149daf8db4be91e5eacfbd6aaab4f801def.zip
Add a couple of missing icons.
Signed-off-by: gregory guy <[email protected]> (cherry picked from commit a25a38afa573d277a3e6c69ee180996176e741ed)
-rw-r--r--src/app/mainWindow.cpp2
-rw-r--r--src/app/playDialog.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/app/mainWindow.cpp b/src/app/mainWindow.cpp
index f3daa02..9ca9bc0 100644
--- a/src/app/mainWindow.cpp
+++ b/src/app/mainWindow.cpp
@@ -257,7 +257,7 @@ MainWindow::setupActions()
new TDEAction( i18n("Reset Video Scale"), "viewmag1", Key_Equal, videoWindow(), SLOT(resetZoom()), ac, "reset_zoom" );
new TDEAction( i18n("Media Information"), "messagebox_info", Key_I, this, SLOT(streamInformation()), ac, "information" );
- new TDEAction( i18n("Menu Toggle"), "dvd_unmount", Key_R, engine(), SLOT(toggleDVDMenu()), ac, "toggle_dvd_menu" );
+ new TDEAction( i18n("Menu Toggle"), "media-optical-dvd-unmounted", Key_R, engine(), SLOT(toggleDVDMenu()), ac, "media-optical-dvd-unmounted" );
new TDEAction( i18n("&Capture Frame"), "frame_image", Key_C, this, SLOT(captureFrame()), ac, "capture_frame" );
new TDEAction( i18n("Video Settings..."), "configure", Key_V, this, SLOT(configure()), ac, "video_settings" );
diff --git a/src/app/playDialog.cpp b/src/app/playDialog.cpp
index ab650b9..b889876 100644
--- a/src/app/playDialog.cpp
+++ b/src/app/playDialog.cpp
@@ -36,15 +36,15 @@ PlayDialog::PlayDialog( TQWidget *parent, bool be_welcome_dialog )
TQGridLayout *grid = new TQGridLayout( vbox, 1, 3, 20 );
//TODO use the kguiItems from the actions
- mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play File..."), "fileopen" ), this ), FILE );
+ mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play File..."), "folder" ), this ), FILE );
connect( o, SIGNAL(clicked()), mapper, SLOT(map()) );
grid->TQLayout::add( o );
- mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play VCD"), "cdaudio_unmount" ), this ), VCD );
+ mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play VCD"), "media-optical-cdaudio-unmounted" ), this ), VCD );
connect( o, SIGNAL(clicked()), mapper, SLOT(map()) );
grid->TQLayout::add( o );
- mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play DVD"), "dvd_unmount" ), this ), DVD );
+ mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play DVD"), "media-optical-dvd-unmounted" ), this ), DVD );
connect( o, SIGNAL(clicked()), mapper, SLOT(map()) );
grid->TQLayout::add( o );