Commit ed9204bc authored by Rémi Duraffort's avatar Rémi Duraffort

phonon: fix typo.

parent fcef76d4
......@@ -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();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment