From 8f4ab09a8ea80a90ae2702eee6ee792f3b232ca4 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 27 Jan 2013 11:57:46 +0100 Subject: Replace toAscii() / fromAscii() with Latin1() functions. Qt5 deprecates the Ascii conversion functions, and the Latin1 functions pretty much do the same. Change-Id: I5dee6a443fcfee6afd3256ee536698bcf65ff896 --- rbutil/rbutilqt/base/bootloaderinstallhex.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rbutil/rbutilqt/base/bootloaderinstallhex.cpp') diff --git a/rbutil/rbutilqt/base/bootloaderinstallhex.cpp b/rbutil/rbutilqt/base/bootloaderinstallhex.cpp index 3fdfba6c8a..506a05522a 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallhex.cpp +++ b/rbutil/rbutilqt/base/bootloaderinstallhex.cpp @@ -87,7 +87,7 @@ bool BootloaderInstallHex::install(void) while(i--) { if(md5sums[i].orig == 0) m_model--; - if(!qstrcmp(md5sums[i].orig, hash.toAscii())) + if(!qstrcmp(md5sums[i].orig, hash.toLatin1())) break; } if(i < 0) { @@ -110,8 +110,8 @@ bool BootloaderInstallHex::install(void) emit logItem(tr("Descrambling file"), LOGINFO); m_descrambled.open(); int result; - result = iriver_decode(m_offile.toAscii().data(), - m_descrambled.fileName().toAscii().data(), FALSE, STRIP_NONE); + result = iriver_decode(m_offile.toLatin1().data(), + m_descrambled.fileName().toLatin1().data(), FALSE, STRIP_NONE); qDebug() << "[BootloaderInstallHex] iriver_decode" << result; if(result < 0) { -- cgit v1.2.3