diff options
author | Michele Calgaro <[email protected]> | 2020-08-02 20:56:26 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-08-02 20:56:26 +0900 |
commit | 2531b8397150940c4217b2a14498afb4fdd844e1 (patch) | |
tree | eed0e8a5a191f0f0c703e26518390b9e8c9eec19 | |
parent | 3c9d9149daf8db4be91e5eacfbd6aaab4f801def (diff) | |
download | codeine-2531b8397150940c4217b2a14498afb4fdd844e1.tar.gz codeine-2531b8397150940c4217b2a14498afb4fdd844e1.zip |
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 <[email protected]>
-rw-r--r-- | src/app/mainWindow.cpp | 2 | ||||
-rw-r--r-- | 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 ); |