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

phonon: fix typo.

parent fcef76d4
...@@ -49,7 +49,7 @@ bool vlcInit() ...@@ -49,7 +49,7 @@ bool vlcInit()
#if defined(Q_OS_UNIX) #if defined(Q_OS_UNIX)
pluginsPath.append("/vlc"); pluginsPath.append("/vlc");
#elif defined(Q_OS_WIN) #elif defined(Q_OS_WIN)
pluginsPath.append("\plugins"); pluginsPath.append("\\plugins");
#endif #endif
// VLC command line options. See vlc --full-help // VLC command line options. See vlc --full-help
const char *vlcArgs[] = { const char *vlcArgs[] = {
...@@ -157,7 +157,7 @@ static QStringList findAllLibVlc() ...@@ -157,7 +157,7 @@ static QStringList findAllLibVlc()
QString vlcVersion = settings.value("Version").toString(); QString vlcVersion = settings.value("Version").toString();
QString vlcInstallDir = settings.value("InstallDir").toString(); QString vlcInstallDir = settings.value("InstallDir").toString();
if (vlcVersion.startsWith("1.0") && !vlcInstallDir.isEmpty()) { if (vlcVersion.startsWith("1.0") && !vlcInstallDir.isEmpty()) {
paths << vlcInstallDir + QLatin1Char('\') + "libvlc"; paths << vlcInstallDir + QLatin1Char('\\') + "libvlc";
return paths; return paths;
} else { } else {
return QString(); 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