https://issues.apache.org/ooo/show_bug.cgi?id=121725
Bug ID: 121725
Issue Type: DEFECT
Summary: [AWT] com::sun::star::awt::XPrinter::start() ignores
its arguments
Classification: Code
Product: api
Version: AOO 3.4.1
Hardware: All
OS: All
Status: CONFIRMED
Severity: normal
Priority: P3
Component: code
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
com::sun::star::awt::XPrinter::start() is defined with three arguments:
boolean start(
[in] string nJobName,
[in] short nCopies,
[in] boolean nCollate )
raises( com::sun::star::awt::PrinterException,
com::sun::star::lang::IllegalArgumentException );
All arguments are ignored in the current implementation:
http://svn.apache.org/viewvc/openoffice/trunk/main/toolkit/source/awt/vclxprinter.cxx?revision=1413471&view=markup#l286
sal_Bool VCLXPrinter::start(
const ::rtl::OUString& /*rJobName*/,
sal_Int16 /*nCopies*/,
sal_Bool /*bCollate*/ )
throw(::com::sun::star::awt::PrinterException,
::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::uno::RuntimeException)
{ ... }
--
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.