summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorKelemen Gábor <kelemeng@ubuntu.com>2019-12-06 14:33:20 +0100
committerKatarina Behrens <Katarina.Behrens@cib.de>2019-12-09 10:51:33 +0100
commit46a07f2042a812fc552e26736183c7d06fe6aa35 (patch)
treed3f762490a8806e833be004c64d5a0642514d0e0 /vcl/source
parent53a647afa68264422d556156b4e77e1b6f46a996 (diff)
tdf#122706 Fix built-in HID on Print dialogs Help button
to open the general Print page. Change-Id: I1ffee4a9d72bb6a4840dec3800a397a878ed2eca Reviewed-on: https://gerrit.libreoffice.org/84628 Tested-by: Jenkins Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/window/printdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/window/printdlg.cxx b/vcl/source/window/printdlg.cxx
index 4a7105a777c9..c50fb512dd92 100644
--- a/vcl/source/window/printdlg.cxx
+++ b/vcl/source/window/printdlg.cxx
@@ -1778,7 +1778,7 @@ IMPL_LINK(PrintDialog, ClickHdl, weld::Button&, rButton, void)
Help* pHelp = Application::GetHelp();
if( pHelp )
{
- pHelp->Start("vcl/ui/printdialog", mxOKButton.get());
+ pHelp->Start("vcl/ui/printdialog/PrintDialog", mxOKButton.get());
}
}
else if ( &rButton == mxPreviewBox.get() )