[vlc-devel] commit: Qt/vlm: == instead of = ( Rémi Duraffort )
git version control
git at videolan.org
Wed Dec 17 20:52:24 CET 2008
vlc | branch: 0.9-bugfix | Rémi Duraffort <ivoire at videolan.org> | Mon Dec 15 23:11:05 2008 +0100| [c89f6fcae4b71a31c15c593ae286089033f6f94a] | committer: Jean-Baptiste Kempf
Qt/vlm: == instead of =
(cherry picked from commit 923575b183b54d9562e26910ebe3675e9d7fdfa9)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c89f6fcae4b71a31c15c593ae286089033f6f94a
---
modules/gui/qt4/dialogs/vlm.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/dialogs/vlm.cpp b/modules/gui/qt4/dialogs/vlm.cpp
index 5b4724d..b873204 100644
--- a/modules/gui/qt4/dialogs/vlm.cpp
+++ b/modules/gui/qt4/dialogs/vlm.cpp
@@ -559,7 +559,7 @@ void VLMBroadcast::update()
void VLMBroadcast::togglePlayPause()
{
- if( b_playing = true )
+ if( b_playing )
{
VLMWrapper::ControlBroadcast( name, ControlBroadcastPause );
playButton->setIcon( QIcon( QPixmap( ":/pause_16px" ) ) );
More information about the vlc-devel
mailing list