]> git.sesse.net Git - vlc/commitdiff
[Qt] Fix VLM icons.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 16 Oct 2008 13:54:57 +0000 (15:54 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 16 Oct 2008 13:54:57 +0000 (15:54 +0200)
Close #2186

modules/gui/qt4/dialogs/vlm.cpp

index c8c3cc72f8ccb7449d9e12f2ea9ac6664771eff0..8fcfaeb01e13eb55101e27362a0a08e149af13d7 100644 (file)
@@ -530,12 +530,12 @@ VLMBroadcast::VLMBroadcast( QString _name, QString _input, QString _output,
     b_looped = _looped;
 
     playButton = new QToolButton;
-    playButton->setIcon( QIcon( QPixmap( ":/play_16px" ) ) );
+    playButton->setIcon( QIcon( QPixmap( ":/play" ) ) );
     objLayout->addWidget( playButton, 1, 0 );
     b_playing = true;
 
     QToolButton *stopButton = new QToolButton;
-    stopButton->setIcon( QIcon( QPixmap( ":/stop_16px" ) ) );
+    stopButton->setIcon( QIcon( QPixmap( ":/stop_b" ) ) );
     objLayout->addWidget( stopButton, 1, 1 );
 
     loopButton = new QToolButton;