Fixed missing return statement in QPrintSupport
Change-Id: I8da63b7d4c5a456b0150b14e089d8f5e69c6a70a Reviewed-by: João Abecasis <joao.abecasis@nokia.com>bb10
parent
40738b185d
commit
15fee6e744
|
|
@ -848,8 +848,8 @@ QList<QPrinter::PaperSize> 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
|
||||
|
|
|
|||
Loading…
Reference in New Issue