diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2022-02-12 14:57:37 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2022-02-14 03:25:08 +0100 |
commit | ace0adfd2312211854a61fdc0aa60c1ba9c4d446 (patch) | |
tree | 8ef8b5802a4ee06813a4fb5d36540b3f238e5854 /cui/source/inc | |
parent | 11a3e5707d6b524728b24e170eb542bba273d811 (diff) |
cui: prefix member variables of SvxGrfCropPage class
Change-Id: If6f4a32df97c352d30958fb27dc90ffec5bbf44d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129884
Tested-by: Tomaž Vajngerl <quikee@gmail.com>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/grfpage.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cui/source/inc/grfpage.hxx b/cui/source/inc/grfpage.hxx index 2c7017a57189..adfaebc33595 100644 --- a/cui/source/inc/grfpage.hxx +++ b/cui/source/inc/grfpage.hxx @@ -49,13 +49,13 @@ class SvxGrfCropPage : public SfxTabPage { friend class VclPtr<SvxGrfCropPage>; - OUString aGraphicName; - Size aOrigSize; - Size aOrigPixelSize; - Size aPageSize; - tools::Long nOldWidth; - tools::Long nOldHeight; - bool bSetOrigSize; + OUString m_aGraphicName; + Size m_aOrigSize; + Size m_aOrigPixelSize; + Size m_aPageSize; + tools::Long m_nOldWidth; + tools::Long m_nOldHeight; + bool m_bSetOrigSize; sal_Int32 m_aPreferredDPI; SvxCropExample m_aExampleWN; |