diff options
author | gregory guy <[email protected]> | 2020-07-24 16:08:06 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-08-02 12:19:15 +0200 |
commit | a25a38afa573d277a3e6c69ee180996176e741ed (patch) | |
tree | 42317f8f59927e7f262a0f751e32d4bddc4ec91a /src/app/playDialog.cpp | |
parent | c36f877f197db5a57addc6ac7d027ca0cdf702e3 (diff) | |
download | codeine-a25a38afa573d277a3e6c69ee180996176e741ed.tar.gz codeine-a25a38afa573d277a3e6c69ee180996176e741ed.zip |
Add a couple of missing icons.
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src/app/playDialog.cpp')
-rw-r--r-- | src/app/playDialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 ); |