From: APTX Date: Thu, 21 Feb 2013 02:10:40 +0000 (+0100) Subject: toLatin1() does the same thing as toAscii(), the latter got deprecated. X-Git-Url: https://gitweb.aptx.org/?a=commitdiff_plain;h=2bcb642c273c6ccba2e5da99150609b8f8dc429b;p=localmylist.git toLatin1() does the same thing as toAscii(), the latter got deprecated. --- diff --git a/localmylist/mylistexportparsetask.cpp b/localmylist/mylistexportparsetask.cpp index daf6f70..9b60ee9 100644 --- a/localmylist/mylistexportparsetask.cpp +++ b/localmylist/mylistexportparsetask.cpp @@ -469,7 +469,7 @@ void MyListExportParseTask::readFile() f.anidbUpdate = QDateTime::fromString(readElementText(), dateTimeFormat); } else if (name() == "ed2kHash") { - f.ed2k = readElementText().toAscii(); + f.ed2k = readElementText().toLatin1(); } else if (name() == "Size") { f.size = readElementText().toLongLong();