[vlc-devel] commit: Qt: remove all the """ present in the Sout mRL. ( Jean-Baptiste Kempf )
git version control
git at videolan.org
Sat Mar 14 16:39:40 CET 2009
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Mar 14 16:39:20 2009 +0100| [9544d24636882294843f5e253cee819c157d19e5] | committer: Jean-Baptiste Kempf
Qt: remove all the """ present in the Sout mRL.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9544d24636882294843f5e253cee819c157d19e5
---
modules/gui/qt4/dialogs/sout.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/dialogs/sout.hpp b/modules/gui/qt4/dialogs/sout.hpp
index 4d822c2..ded4230 100644
--- a/modules/gui/qt4/dialogs/sout.hpp
+++ b/modules/gui/qt4/dialogs/sout.hpp
@@ -83,7 +83,7 @@ public:
char *psz = config_StringEscape( qtu(value) );
if( psz )
{
- mrl += "=\"" + qfu( psz ) + "\"";
+ mrl += "=" + qfu( psz );
free( psz );
}
}
More information about the vlc-devel
mailing list