[vlc-devel] commit: phonon: fix typo. ( Rémi Duraffort )
git version control
git at videolan.org
Tue Aug 18 21:19:21 CEST 2009
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue Aug 18 19:40:17 2009 +0200| [ed9204bc88f433a487cb78c8987febf50ee69aec] | committer: Rémi Duraffort
phonon: fix typo.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ed9204bc88f433a487cb78c8987febf50ee69aec
---
bindings/phonon/vlc/vlcloader.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/bindings/phonon/vlc/vlcloader.cpp b/bindings/phonon/vlc/vlcloader.cpp
index d3856b3..73e42da 100644
--- a/bindings/phonon/vlc/vlcloader.cpp
+++ b/bindings/phonon/vlc/vlcloader.cpp
@@ -49,7 +49,7 @@ bool vlcInit()
#if defined(Q_OS_UNIX)
pluginsPath.append("/vlc");
#elif defined(Q_OS_WIN)
- pluginsPath.append("\plugins");
+ pluginsPath.append("\\plugins");
#endif
// VLC command line options. See vlc --full-help
const char *vlcArgs[] = {
@@ -157,7 +157,7 @@ static QStringList findAllLibVlc()
QString vlcVersion = settings.value("Version").toString();
QString vlcInstallDir = settings.value("InstallDir").toString();
if (vlcVersion.startsWith("1.0") && !vlcInstallDir.isEmpty()) {
- paths << vlcInstallDir + QLatin1Char('\') + "libvlc";
+ paths << vlcInstallDir + QLatin1Char('\\') + "libvlc";
return paths;
} else {
return QString();
More information about the vlc-devel
mailing list