diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-12-04 16:48:08 +0000 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-02-18 23:15:42 +0100 |
commit | 07f0566026db8f5ec048297785f82a43e73a14f6 (patch) | |
tree | caeda62bb3b990de27bac94ab9255c52cd57b8fd | |
parent | a05e22067a167b0aa41ffdad0d061371811a177d (diff) |
fdo#41760 rhbz#1038189 refresh printer list when print dialog launched
which is the the same thing the printer settings dialog does
(cherry picked from commit 02efbed152a3a9e364cdb73628af0aed0f5d6f7a)
Signed-off-by: Michael Stahl <mstahl@redhat.com>
Change-Id: I36fb9f057b66faa8c9fce5a9934ed2fb70786363
-rw-r--r-- | vcl/source/window/printdlg.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx index b8cb188bde4d..21941cacb8ce 100644 --- a/vcl/source/window/printdlg.cxx +++ b/vcl/source/window/printdlg.cxx @@ -602,6 +602,8 @@ PrintDialog::PrintDialog( Window* i_pParent, const boost::shared_ptr<PrinterCont // init reverse print maJobPage.mpReverseOrderBox->Check( maPController->getReversePrint() ); + Printer::updatePrinters(); + // fill printer listbox const std::vector< OUString >& rQueues( Printer::GetPrinterQueues() ); for( std::vector< OUString >::const_iterator it = rQueues.begin(); |