summaryrefslogtreecommitdiff
path: root/sw/source/uibase/docvw/edtwin.cxx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2021-06-15 22:38:26 +0900
committerTomaž Vajngerl <quikee@gmail.com>2021-06-17 10:44:05 +0200
commita572acc3dd5c0bd173ff2881b239be98f4b6ecb4 (patch)
treefce919fc31ba801ba49a5f89e2470fa4861f0945 /sw/source/uibase/docvw/edtwin.cxx
parent12da70f88517bf3c053afe1c504bb70bd27573f2 (diff)
svx: prefix member variables SdrViewEvent SdrView SdrObjGroup
Change-Id: Ic20c9dc7b8109cb095a883f2dfcec3e4f10b2428 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117352 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sw/source/uibase/docvw/edtwin.cxx')
-rw-r--r--sw/source/uibase/docvw/edtwin.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/docvw/edtwin.cxx b/sw/source/uibase/docvw/edtwin.cxx
index 446d2faa5405..d93c1f08178c 100644
--- a/sw/source/uibase/docvw/edtwin.cxx
+++ b/sw/source/uibase/docvw/edtwin.cxx
@@ -3165,7 +3165,7 @@ void SwEditWin::MouseButtonDown(const MouseEvent& _rMEvt)
SdrViewEvent aVEvt;
pSdrView->PickAnything(aMEvt, SdrMouseEventKind::BUTTONDOWN, aVEvt);
- if (aVEvt.eEvent == SdrEventKind::ExecuteUrl)
+ if (aVEvt.meEvent == SdrEventKind::ExecuteUrl)
bExecDrawTextLink = true;
}
}
@@ -4810,10 +4810,10 @@ void SwEditWin::MouseButtonUp(const MouseEvent& rMEvt)
if (pSdrView)
pSdrView->PickAnything(rMEvt, SdrMouseEventKind::BUTTONDOWN, aVEvt);
- if (pSdrView && aVEvt.eEvent == SdrEventKind::ExecuteUrl)
+ if (pSdrView && aVEvt.meEvent == SdrEventKind::ExecuteUrl)
{
// hit URL field
- const SvxURLField *pField = aVEvt.pURLField;
+ const SvxURLField *pField = aVEvt.mpURLField;
if (pField)
{
const OUString& sURL(pField->GetURL());