summaryrefslogtreecommitdiff
path: root/sw/source/core/draw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-24 10:34:13 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-24 10:43:00 +0100
commitf3167bd7d33fbc1e93f0728ab06b6d67fc1956bd (patch)
treef41524b9a06afa7e1c30a8bd13bbfe8627b2ba91 /sw/source/core/draw
parentef16fa914bc33b64bafb67637e6983ddc310c415 (diff)
Related: fdo#70571 say [ctrl+]click to follow link
as opposed to "hyperlink". Be more generic and consistent across both ctrl+click and click modes. Change-Id: I673ed59fc9f3408a0c4534c6490d9bbc3598bc08
Diffstat (limited to 'sw/source/core/draw')
-rw-r--r--sw/source/core/draw/dpage.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/draw/dpage.cxx b/sw/source/core/draw/dpage.cxx
index 9f18b52f45f4..5e73e87e7650 100644
--- a/sw/source/core/draw/dpage.cxx
+++ b/sw/source/core/draw/dpage.cxx
@@ -182,9 +182,9 @@ sal_Bool SwDPage::RequestHelp( Window* pWindow, SdrView* pView,
bExecHyperlinks = !aSecOpts.IsOptionSet( SvtSecurityOptions::E_CTRLCLICK_HYPERLINK );
if ( !bExecHyperlinks )
- {
- sTxt = ViewShell::GetShellRes()->aHyperlinkClick + ": " + sTxt;
- }
+ sTxt = ViewShell::GetShellRes()->aLinkCtrlClick + ": " + sTxt;
+ else
+ sTxt = ViewShell::GetShellRes()->aLinkClick + ": " + sTxt;
}