Fix a stupid missed semicolon

I appear to be suffering from too much Python...
This commit is contained in:
Alan Briolat 2014-08-12 21:33:18 +01:00
parent e876df1b23
commit 7a46629d97
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ void ParserBase::LoadSong(const QString& filename_or_url, qint64 beginning,
// Clementine always wants / separators internally. Using
// QDir::fromNativeSeparators() only works on the same platform the playlist
// was created on/for, using replace() lets playlists work on any platform.
filename = filename.replace('\\', '/')
filename = filename.replace('\\', '/');
// Make the path absolute
if (!QDir::isAbsolutePath(filename)) {