Skip to content

Commit

Permalink
Merge pull request #3745 from anatoly-os/273516fix
Browse files Browse the repository at this point in the history
fix #273516: some scores are opened as blank pages
  • Loading branch information
anatoly-os committed Jun 21, 2018
2 parents c743f8d + 7abecec commit 36ee776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thirdparty/qzip/qzip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ QByteArray MQZipReader::fileData(const QString &fileName) const
d->scanFiles();
int i;
for (i = 0; i < d->fileHeaders.size(); ++i) {
if (QString::fromLocal8Bit(d->fileHeaders.at(i).file_name) == fileName)
if (QString::fromUtf8(d->fileHeaders.at(i).file_name) == fileName)
break;
}
if (i == d->fileHeaders.size())
Expand Down

0 comments on commit 36ee776

Please sign in to comment.