From 2531b8397150940c4217b2a14498afb4fdd844e1 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 2 Aug 2020 20:56:26 +0900 Subject: [PATCH] Rename icons to match R14.0.x names. This is an extension of the previous (incorrectly pushed) commit. Apologies for the mess. Signed-off-by: Michele Calgaro --- src/app/mainWindow.cpp | 2 +- src/app/playDialog.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/mainWindow.cpp b/src/app/mainWindow.cpp index 9ca9bc0..b4d806f 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"), "media-optical-dvd-unmounted", Key_R, engine(), SLOT(toggleDVDMenu()), ac, "media-optical-dvd-unmounted" ); + new TDEAction( i18n("Menu Toggle"), "media-optical-dvd", Key_R, engine(), SLOT(toggleDVDMenu()), ac, "media-optical-dvd" ); 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 b889876..b068888 100644 --- a/src/app/playDialog.cpp +++ b/src/app/playDialog.cpp @@ -40,11 +40,11 @@ PlayDialog::PlayDialog( TQWidget *parent, bool be_welcome_dialog ) connect( o, SIGNAL(clicked()), mapper, SLOT(map()) ); grid->TQLayout::add( o ); - mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play VCD"), "media-optical-cdaudio-unmounted" ), this ), VCD ); + mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play VCD"), "media-optical-cdaudio" ), this ), VCD ); connect( o, SIGNAL(clicked()), mapper, SLOT(map()) ); grid->TQLayout::add( o ); - mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play DVD"), "media-optical-dvd-unmounted" ), this ), DVD ); + mapper->setMapping( o = new KPushButton( KGuiItem( i18n("Play DVD"), "media-optical-dvd" ), this ), DVD ); connect( o, SIGNAL(clicked()), mapper, SLOT(map()) ); grid->TQLayout::add( o );