[vlc-devel] commit: [Qt] Fix VLM icons. (Jean-Baptiste Kempf )

git version control git at videolan.org
Thu Oct 16 15:56:53 CEST 2008


vlc | branch: 0.9-bugfix | Jean-Baptiste Kempf <jb at videolan.org> | Thu Oct 16 15:54:57 2008 +0200| [e8aa93f23deaef78df15281ea82f137ea87db881] | committer: Jean-Baptiste Kempf 

[Qt] Fix VLM icons.

Close #2186
(cherry picked from commit bb787d967021d26d41e9ae90cbfc4097097a7332)

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e8aa93f23deaef78df15281ea82f137ea87db881
---

 modules/gui/qt4/dialogs/vlm.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt4/dialogs/vlm.cpp b/modules/gui/qt4/dialogs/vlm.cpp
index c000471..5b4724d 100644
--- a/modules/gui/qt4/dialogs/vlm.cpp
+++ b/modules/gui/qt4/dialogs/vlm.cpp
@@ -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;




More information about the vlc-devel mailing list