summaryrefslogtreecommitdiff
path: root/sw/inc/unosett.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2018-09-03 09:12:36 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-09-03 16:01:48 +0200
commit009fdd4b83ba5ed66bd858784938fd6e246ddf75 (patch)
tree65b045b3ffe1a750582505b47e7e87c7eb14219d /sw/inc/unosett.hxx
parent459c5e3e04a0c5b99f412202b55e3ef2db44200c (diff)
sw: prefix members of SwXTextColumns
Change-Id: I03add1c19ce225eeec92d6d3d43063b59c6b7967 Reviewed-on: https://gerrit.libreoffice.org/59917 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins
Diffstat (limited to 'sw/inc/unosett.hxx')
-rw-r--r--sw/inc/unosett.hxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/sw/inc/unosett.hxx b/sw/inc/unosett.hxx
index 1372c30126d0..e4203d3a315d 100644
--- a/sw/inc/unosett.hxx
+++ b/sw/inc/unosett.hxx
@@ -246,20 +246,20 @@ class SwXTextColumns : public cppu::WeakAggImplHelper4
css::lang::XServiceInfo
>
{
- sal_Int32 nReference;
- css::uno::Sequence< css::text::TextColumn> aTextColumns;
- bool bIsAutomaticWidth;
- sal_Int32 nAutoDistance;
+ sal_Int32 m_nReference;
+ css::uno::Sequence< css::text::TextColumn> m_aTextColumns;
+ bool m_bIsAutomaticWidth;
+ sal_Int32 m_nAutoDistance;
const SfxItemPropertySet* m_pPropSet;
//separator line
- sal_Int32 nSepLineWidth;
- Color nSepLineColor;
- sal_Int8 nSepLineHeightRelative;
- css::style::VerticalAlignment nSepLineVertAlign;
- bool bSepLineIsOn;
- sal_Int8 nSepLineStyle;
+ sal_Int32 m_nSepLineWidth;
+ Color m_nSepLineColor;
+ sal_Int8 m_nSepLineHeightRelative;
+ css::style::VerticalAlignment m_nSepLineVertAlign;
+ bool m_bSepLineIsOn;
+ sal_Int8 m_nSepLineStyle;
protected:
virtual ~SwXTextColumns() override;
@@ -293,14 +293,14 @@ public:
virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
- sal_Int32 GetSepLineWidth() const {return nSepLineWidth;}
- Color GetSepLineColor() const {return nSepLineColor;}
- sal_Int8 GetSepLineHeightRelative() const {return nSepLineHeightRelative;}
- css::style::VerticalAlignment GetSepLineVertAlign() const {return nSepLineVertAlign;}
- bool GetSepLineIsOn() const {return bSepLineIsOn;}
- sal_Int8 GetSepLineStyle() const {return nSepLineStyle;}
+ sal_Int32 GetSepLineWidth() const {return m_nSepLineWidth;}
+ Color GetSepLineColor() const {return m_nSepLineColor;}
+ sal_Int8 GetSepLineHeightRelative() const {return m_nSepLineHeightRelative;}
+ css::style::VerticalAlignment GetSepLineVertAlign() const {return m_nSepLineVertAlign;}
+ bool GetSepLineIsOn() const {return m_bSepLineIsOn;}
+ sal_Int8 GetSepLineStyle() const {return m_nSepLineStyle;}
- bool IsAutomaticWidth() const {return bIsAutomaticWidth;}
+ bool IsAutomaticWidth() const {return m_bIsAutomaticWidth;}
};
#endif