From 15fee6e744a85672c4213fbd396e5f9a43483ffc Mon Sep 17 00:00:00 2001 From: Kevin Simons Date: Wed, 19 Oct 2011 14:12:28 +0200 Subject: [PATCH] Fixed missing return statement in QPrintSupport MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8da63b7d4c5a456b0150b14e089d8f5e69c6a70a Reviewed-by: João Abecasis --- src/printsupport/kernel/qprinterinfo_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/printsupport/kernel/qprinterinfo_unix.cpp b/src/printsupport/kernel/qprinterinfo_unix.cpp index c7dbb7cc32c..63b7a2a7d94 100644 --- a/src/printsupport/kernel/qprinterinfo_unix.cpp +++ b/src/printsupport/kernel/qprinterinfo_unix.cpp @@ -848,8 +848,8 @@ QList qt_getCupsPrinterPaperSizes(int cupsPrinterIndex) for (int j = 0; j < size->num_choices; ++j) result.append(string2PaperSize(size->choices[j].choice)); } - return result; #endif + return result; } #endif // QT_NO_PRINTER