summaryrefslogtreecommitdiff
path: root/sw/source/ui/dbui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-04-27 16:31:40 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-04-29 15:33:51 +0200
commit288b9a3e22c2495c24d6fd195bd8f33a990a9b81 (patch)
treee04f783784bbb2f44712161ab983d74781fdee49 /sw/source/ui/dbui
parent71fa42a61f98e57f433f6ab5bb98ec8aa50dacfa (diff)
weld SwEndNoteOptionPage
Change-Id: I2313352a66b088a4198ac8a96d2fd218bb2176fd Reviewed-on: https://gerrit.libreoffice.org/53608 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/ui/dbui')
-rw-r--r--sw/source/ui/dbui/mmresultdialogs.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/dbui/mmresultdialogs.cxx b/sw/source/ui/dbui/mmresultdialogs.cxx
index 6fcd3740d58f..b2f8cb2c3d7e 100644
--- a/sw/source/ui/dbui/mmresultdialogs.cxx
+++ b/sw/source/ui/dbui/mmresultdialogs.cxx
@@ -369,18 +369,18 @@ void SwMMResultPrintDialog::FillInPrinterSettings()
if(!bMergePrinterExists)
{
SfxPrinter* pPrinter = pView->GetWrtShell().getIDocumentDeviceAccess().getPrinter( true );
- m_xPrinterLB->set_active(pPrinter->GetName());
+ m_xPrinterLB->set_active_text(pPrinter->GetName());
}
else
{
- m_xPrinterLB->set_active(xConfigItem->GetSelectedPrinter());
+ m_xPrinterLB->set_active_text(xConfigItem->GetSelectedPrinter());
}
sal_Int32 count = xConfigItem->GetMergedDocumentCount();
m_xToNF->set_value(count);
m_xToNF->set_max(count);
- m_xPrinterLB->set_active(xConfigItem->GetSelectedPrinter());
+ m_xPrinterLB->set_active_text(xConfigItem->GetSelectedPrinter());
}
void SwMMResultEmailDialog::FillInEmailSettings()