Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
4.6.2
-
None
Description
Setting up different printers on system i can get page sizes only from the default one in the case of using a code like the following (from kipi printwizard):
QList<QPrinterInfo>::iterator it;
//m_printerList = QPrinterInfo::availablePrinters ();
for ( it = d->m_printerList.begin();
it != d->m_printerList.end(); ++it )
{
if (it->printerName () == text)
}
...
void Wizard::pagesetupclicked()
{
if (d->m_pDlg)
delete d->m_pDlg;
d->m_pDlg = new QPageSetupDialog (d->m_printer, this);
int ret = d->m_pDlg->exec();
if ( ret == QDialog::Accepted )
}
Attachments
Issue Links
- is required for
-
QTBUG-25380 QtPrintSupport - Page Layout Issues
- Open
-
QTBUG-37698 QtPrintSupport - Dialog Issues
- Open