From: John Layt Date: Fri, 25 May 2012 18:28:37 +0000 (+0100) Subject: QtPrintSupport: Change QPrinterInfo::defaultPrinter() behaviour X-Git-Tag: 071012110112~773 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5bd5f6ae69d749bc3adef58edc906b9fb46bb7a8;p=profile%2Fivi%2Fqtbase.git QtPrintSupport: Change QPrinterInfo::defaultPrinter() behaviour In Qt4 QPrinterInfo::defaultPrinter() has inconsistant behaviour depending on the platform. On Mac and Unix if no default printer is set in the system then the first available printer is returned. but on Windows it returns a null QPrinterInfo. Currently Qt5 returns the first printer on all platforms, but this causes an inconsistency if you call isDefault() on the returned QPrinterInfo. The apidox is slightly ambiguous, but does seem to imply no printer will be returned if no default is set. The only place in Qt the public api is used is in QPrinter which is coded expecting that defaultPrinter() may return null but for there still to be availablePrinters(). Change-Id: I1bbef8cba259b7d51980a0199e9fd6d5466d921f Reviewed-by: Teemu Katajisto Reviewed-by: John Layt --- diff --git a/src/printsupport/kernel/qplatformprintersupport_qpa.cpp b/src/printsupport/kernel/qplatformprintersupport_qpa.cpp index 35441df..d2459dc 100644 --- a/src/printsupport/kernel/qplatformprintersupport_qpa.cpp +++ b/src/printsupport/kernel/qplatformprintersupport_qpa.cpp @@ -94,7 +94,7 @@ QPrinterInfo QPlatformPrinterSupport::defaultPrinter() if (printerInfo.isDefault()) return printerInfo; } - return printers.isEmpty() ? QPrinterInfo() : printers.front(); + return QPrinterInfo(); } QPrinterInfo QPlatformPrinterSupport::printerInfo(const QString &printerName) diff --git a/src/printsupport/kernel/qprinterinfo.cpp b/src/printsupport/kernel/qprinterinfo.cpp index fbf2e4d..dc60d7a 100644 --- a/src/printsupport/kernel/qprinterinfo.cpp +++ b/src/printsupport/kernel/qprinterinfo.cpp @@ -69,7 +69,12 @@ QPrinterInfoPrivate QPrinterInfoPrivate::shared_null; The return value should be checked using isNull() before being used, in case there is no default printer. + On some systems it is possible for there to be available printers + but none of them set to be the default printer. + \sa isNull() + \sa isDefault() + \sa availablePrinters() */ /*!