summaryrefslogtreecommitdiff
path: root/sd/source/ui/func
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2023-09-11 23:45:58 +0200
committerJulien Nabet <serval2412@yahoo.fr>2023-09-12 07:43:40 +0200
commit01d7bd4f08cf05dd44b1239287451c52a965e343 (patch)
tree5ad484f52d9e538102ffa2541366ec66b2b6a509 /sd/source/ui/func
parentf5bcc34580d02f92af01963155f2d54776a5249b (diff)
svx: prefix members of SdrObjConnection
+ modify GetObject() into GetSdrObject() + modify pObj into m_pSdrObj The goal was to be a little bit more specific since they concern a class and not a local function. Change-Id: I1b3f19a16a452f22af82da22e33cd2f1522e1a7e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156832 Tested-by: Julien Nabet <serval2412@yahoo.fr> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sd/source/ui/func')
-rw-r--r--sd/source/ui/func/fupoor.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/func/fupoor.cxx b/sd/source/ui/func/fupoor.cxx
index c75959fbc243..e6fe25f7117d 100644
--- a/sd/source/ui/func/fupoor.cxx
+++ b/sd/source/ui/func/fupoor.cxx
@@ -607,14 +607,14 @@ bool FuPoor::KeyInput(const KeyEvent& rKEvt)
{
if(0 == pHdl->GetPointNum())
{
- if(pEdgeObj->GetConnection(true).GetObject())
+ if(pEdgeObj->GetConnection(true).GetSdrObject())
{
bIsMoveOfConnectedHandle = true;
}
}
if(1 == pHdl->GetPointNum())
{
- if(pEdgeObj->GetConnection(false).GetObject())
+ if(pEdgeObj->GetConnection(false).GetSdrObject())
{
bIsMoveOfConnectedHandle = true;
}