summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2025-02-17 08:12:24 +0100
committerMiklos Vajna <vmiklos@collabora.com>2025-02-17 09:16:33 +0100
commitbe145cb8b6f60805ddc8674aa6557be7e79c227f (patch)
tree1e4797e7fe33fb82383d69a7d013fec04b9a5be1 /svx
parent51e8bb0db422c485d586a36b59201e0019801a76 (diff)
svx: prefix members of GalleryPreview
See tdf#94879 for motivation. Change-Id: I5b2f371541851adb3a423573567b33f207c4ab3d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181760 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/gallery2/galctrl.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/gallery2/galctrl.cxx b/svx/source/gallery2/galctrl.cxx
index a6b916beb472..b3927010edac 100644
--- a/svx/source/gallery2/galctrl.cxx
+++ b/svx/source/gallery2/galctrl.cxx
@@ -114,15 +114,15 @@ void GalleryPreview::Paint(vcl::RenderContext& rRenderContext, const tools::Rect
rRenderContext.SetBackground(Wallpaper(GALLERY_BG_COLOR));
rRenderContext.Erase();
- if (ImplGetGraphicCenterRect(aGraphicObj.GetGraphic(), aPreviewRect))
+ if (ImplGetGraphicCenterRect(m_aGraphicObj.GetGraphic(), m_aPreviewRect))
{
- const Point aPos( aPreviewRect.TopLeft() );
- const Size aSize( aPreviewRect.GetSize() );
+ const Point aPos( m_aPreviewRect.TopLeft() );
+ const Size aSize( m_aPreviewRect.GetSize() );
- if( aGraphicObj.IsAnimated() )
- aGraphicObj.StartAnimation(rRenderContext, aPos, aSize);
+ if( m_aGraphicObj.IsAnimated() )
+ m_aGraphicObj.StartAnimation(rRenderContext, aPos, aSize);
else
- aGraphicObj.Draw(rRenderContext, aPos, aSize);
+ m_aGraphicObj.Draw(rRenderContext, aPos, aSize);
}
}