From d9f4b130aa1c529c50d1e7a9d55c13de7ea72b08 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Wed, 2 May 2012 16:32:26 +0200 Subject: Change remaining uses of {to,from}Ascii to {to,from}Latin1 [QtPrintSupport] This operation should be a no-op anyway, since at this point in time, the fromAscii and toAscii functions simply call their fromLatin1 and toLatin1 counterparts. Task-number: QTBUG-21872 Change-Id: I73963515a44175cb63251d0508d5f28d78076d76 Reviewed-by: John Layt Reviewed-by: Lars Knoll --- src/printsupport/kernel/qprinterinfo_unix.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/printsupport/kernel/qprinterinfo_unix.cpp b/src/printsupport/kernel/qprinterinfo_unix.cpp index 241986d9e8..b87d2a160b 100644 --- a/src/printsupport/kernel/qprinterinfo_unix.cpp +++ b/src/printsupport/kernel/qprinterinfo_unix.cpp @@ -363,7 +363,7 @@ char *qt_parsePrintersConf(QList *printers, bool *found) j++; // that's our default printer defaultPrinter = - qstrdup(printerDesc.mid(i, j-i).toAscii().data()); + qstrdup(printerDesc.mid(i, j-i).toLatin1().data()); printerName = QString(); printerDesc = QString(); } else if (printerName == QLatin1String("_all")) { @@ -758,7 +758,7 @@ Q_PRINTSUPPORT_EXPORT int qt_getLprPrinters(QList& printers if (def.readLine(etcLpDefault.data(), 1024) > 0) { QRegExp rx(QLatin1String("^(\\S+)")); if (rx.indexIn(QString::fromLatin1(etcLpDefault)) != -1) - etcLpDefault = rx.cap(1).toAscii(); + etcLpDefault = rx.cap(1).toLatin1(); } } } -- cgit v1.2.3