diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-10-07 21:17:36 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-10-07 21:17:36 +0000 |
| commit | be8175313645542ae50e175a0b72c611e9178ae1 (patch) | |
| tree | 62f95bbc38e5327be81cb0bf904f2710404629e4 /src/plugins/PlayListFormats/xspf | |
| parent | 968048296c2d2650a6083a5d99ea3914352958e1 (diff) | |
| download | qmmp-be8175313645542ae50e175a0b72c611e9178ae1.tar.gz qmmp-be8175313645542ae50e175a0b72c611e9178ae1.tar.bz2 qmmp-be8175313645542ae50e175a0b72c611e9178ae1.zip | |
fixed build regression
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7519 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/PlayListFormats/xspf')
| -rw-r--r-- | src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp index 7a69aab81..562b8d154 100644 --- a/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp +++ b/src/plugins/PlayListFormats/xspf/xspfplaylistformat.cpp @@ -41,7 +41,7 @@ QList<PlayListTrack*> XSPFPlaylistFormat::decode(const QByteArray &contents) { QList<PlayListTrack*> out; QString currentTag; - QString contents_copy = QString::fromUtf8(contents); + QString contents_copy = QString::fromUtf8(contents.constData()); //remove control symbols to avoid xml errors for(int i = 0; i < contents_copy.size(); ++i) |
