diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-09-14 10:18:41 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-09-14 10:18:41 +0000 |
| commit | 1f6c3d75280ced7586b3c2672493133e85681e28 (patch) | |
| tree | 38149372a2ce088fff86aeea6edf6997df916777 /src/qmmpui/playlistmanager.cpp | |
| parent | 56b1bcd542e800b8340e76faa28a9c845527f8f9 (diff) | |
| download | qmmp-1f6c3d75280ced7586b3c2672493133e85681e28.tar.gz qmmp-1f6c3d75280ced7586b3c2672493133e85681e28.tar.bz2 qmmp-1f6c3d75280ced7586b3c2672493133e85681e28.zip | |
fixed build with QT_NO_CAST_FROM_BYTEARRAY
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7464 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistmanager.cpp')
| -rw-r--r-- | src/qmmpui/playlistmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qmmpui/playlistmanager.cpp b/src/qmmpui/playlistmanager.cpp index 52f610791..b62ca8a1c 100644 --- a/src/qmmpui/playlistmanager.cpp +++ b/src/qmmpui/playlistmanager.cpp @@ -249,7 +249,7 @@ void PlayListManager::readPlayLists() while (!buffer.atEnd()) { - line = QString::fromUtf8(buffer.readLine()).trimmed(); + line = QString::fromUtf8(buffer.readLine().constData()).trimmed(); if ((s = line.indexOf("=")) < 0) continue; |
