summaryrefslogtreecommitdiff
path: root/sc/source/ui/drawfunc/fusel.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 /sc/source/ui/drawfunc/fusel.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 'sc/source/ui/drawfunc/fusel.cxx')
-rw-r--r--sc/source/ui/drawfunc/fusel.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/ui/drawfunc/fusel.cxx b/sc/source/ui/drawfunc/fusel.cxx
index 52a5b9a4be17..6c8f753d4974 100644
--- a/sc/source/ui/drawfunc/fusel.cxx
+++ b/sc/source/ui/drawfunc/fusel.cxx
@@ -203,22 +203,22 @@ bool FuSelection::MouseButtonDown(const MouseEvent& rMEvt)
SdrViewEvent aVEvt;
if ( !bAlt &&
pView->PickAnything( rMEvt, SdrMouseEventKind::BUTTONDOWN, aVEvt ) != SdrHitKind::NONE &&
- aVEvt.pObj != nullptr )
+ aVEvt.mpObj != nullptr )
{
- if ( SvxIMapInfo::GetIMapInfo( aVEvt.pObj ) ) // ImageMap
+ if ( SvxIMapInfo::GetIMapInfo( aVEvt.mpObj ) ) // ImageMap
{
const IMapObject* pIMapObj =
- SvxIMapInfo::GetHitIMapObject( aVEvt.pObj, aMDPos, pWindow->GetOutDev() );
+ SvxIMapInfo::GetHitIMapObject( aVEvt.mpObj, aMDPos, pWindow->GetOutDev() );
if ( pIMapObj && !pIMapObj->GetURL().isEmpty() )
{
sURL = pIMapObj->GetURL();
sTarget = pIMapObj->GetTarget();
}
}
- if ( aVEvt.eEvent == SdrEventKind::ExecuteUrl && aVEvt.pURLField ) // URL
+ if ( aVEvt.meEvent == SdrEventKind::ExecuteUrl && aVEvt.mpURLField ) // URL
{
- sURL = aVEvt.pURLField->GetURL();
- sTarget = aVEvt.pURLField->GetTargetFrame();
+ sURL = aVEvt.mpURLField->GetURL();
+ sTarget = aVEvt.mpURLField->GetTargetFrame();
}
}
@@ -456,7 +456,7 @@ bool FuSelection::MouseButtonUp(const MouseEvent& rMEvt)
SdrViewEvent aVEvt;
SdrHitKind eHit = pView->PickAnything( rMEvt, SdrMouseEventKind::BUTTONDOWN, aVEvt );
- if (eHit != SdrHitKind::NONE && aVEvt.pObj == pObj)
+ if (eHit != SdrHitKind::NONE && aVEvt.mpObj == pObj)
{
sal_uInt16 nSdrObjKind = pObj->GetObjIdentifier();