]> git.sesse.net Git - vlc/commitdiff
phonon: fix typo.
authorRémi Duraffort <ivoire@videolan.org>
Tue, 18 Aug 2009 17:40:17 +0000 (19:40 +0200)
committerRémi Duraffort <ivoire@videolan.org>
Tue, 18 Aug 2009 19:15:21 +0000 (21:15 +0200)
bindings/phonon/vlc/vlcloader.cpp

index d3856b30c11b8ff6efaf9567ac244e204cf27f17..73e42da2dfb921d1e7bfb400f9f00e34cb36bc17 100644 (file)
@@ -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();