mirror of
https://github.com/clementine-player/Clementine
synced 2025-01-27 09:41:32 +01:00
292fd0b009
Methods QString::fromAscii and QString::toAscii have been deprecated in Qt 5 (https://doc.qt.io/qt-5/qstring-obsolete.html). This commit replaces calls to QString::fromAscii by calls to QString::fromLatin1 and calls to QString::toAscii by calls to QString::toLatin1. This allows successful build when merging branch master into branch qt5.