[vlc-devel] commit: Added missing quote from command syntax (Mark Bidewell )
git version control
git at videolan.org
Wed Jan 28 01:02:43 CET 2009
vlc | branch: master | Mark Bidewell <mark.bidewell at alumni.clemson.edu> | Tue Jan 27 17:10:46 2009 -0500| [5914b49741c125f3109aff44f1b2959f6219cc2b] | committer: Jean-Baptiste Kempf
Added missing quote from command syntax
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5914b49741c125f3109aff44f1b2959f6219cc2b
---
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 ec938f9..b8a5772 100644
--- a/modules/gui/qt4/dialogs/vlm.cpp
+++ b/modules/gui/qt4/dialogs/vlm.cpp
@@ -705,7 +705,7 @@ void VLMWrapper::ControlBroadcast( const QString name, int BroadcastStatus,
{
vlm_message_t *message;
- QString command = "control \"" + name;
+ QString command = "control \"" + name + "\"";
switch( BroadcastStatus )
{
case ControlBroadcastPlay:
More information about the vlc-devel
mailing list