summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2021-12-06 08:14:53 +0100
committerMiklos Vajna <vmiklos@collabora.com>2021-12-06 09:29:53 +0100
commitf72bb33e78ac9eb7d9f21b61bd89b186547993dd (patch)
tree0077bbf6501bef254e075a670da268f05841dd30 /sw/source/uibase/inc
parentf989406acd1726606def5ea0e19bd2399116ae83 (diff)
sw: prefix members of SwAnchorMarker, SwEditWin, SwShadowCursor and ...
... SwSrcEditWindow::ChangesListener See tdf#94879 for motivation. Change-Id: Idd3aba48ca7329b6df2e52fff73eca360aa76be5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126399 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/uibase/inc')
-rw-r--r--sw/source/uibase/inc/edtwin.hxx10
-rw-r--r--sw/source/uibase/inc/shdwcrsr.hxx12
2 files changed, 11 insertions, 11 deletions
diff --git a/sw/source/uibase/inc/edtwin.hxx b/sw/source/uibase/inc/edtwin.hxx
index 06fbee57f0e3..0db0e6d2b35a 100644
--- a/sw/source/uibase/inc/edtwin.hxx
+++ b/sw/source/uibase/inc/edtwin.hxx
@@ -58,10 +58,10 @@ enum class SdrHitKind;
class SW_DLLPUBLIC SwEditWin final : public vcl::Window,
public DropTargetHelper, public DragSourceHelper
{
- static QuickHelpData* m_pQuickHlpData;
+ static QuickHelpData* s_pQuickHlpData;
- static tools::Long m_nDDStartPosX;
- static tools::Long m_nDDStartPosY;
+ static tools::Long s_nDDStartPosX;
+ static tools::Long s_nDDStartPosY;
Color m_aWaterCanTextColor; // text color; for the watering can
Color m_aWaterCanTextBackColor; // text background; for the watering can
@@ -246,8 +246,8 @@ public:
virtual css::uno::Reference< css::accessibility::XAccessible > CreateAccessible() override;
- static tools::Long GetDDStartPosX() { return m_nDDStartPosX; }
- static tools::Long GetDDStartPosY() { return m_nDDStartPosY; }
+ static tools::Long GetDDStartPosX() { return s_nDDStartPosX; }
+ static tools::Long GetDDStartPosY() { return s_nDDStartPosY; }
static void InitStaticData();
static void FinitStaticData();
diff --git a/sw/source/uibase/inc/shdwcrsr.hxx b/sw/source/uibase/inc/shdwcrsr.hxx
index 9c516f47405e..bf7fec99ae30 100644
--- a/sw/source/uibase/inc/shdwcrsr.hxx
+++ b/sw/source/uibase/inc/shdwcrsr.hxx
@@ -27,18 +27,18 @@
class SwShadowCursor
{
- VclPtr<vcl::Window> pWin;
- Color aCol;
- Point aOldPt;
- tools::Long nOldHeight;
- sal_uInt16 nOldMode;
+ VclPtr<vcl::Window> m_pWin;
+ Color m_aCol;
+ Point m_aOldPt;
+ tools::Long m_nOldHeight;
+ sal_uInt16 m_nOldMode;
void DrawTri( const Point& rPt, tools::Long nHeight, bool bLeft );
void DrawCursor( const Point& rPt, tools::Long nHeight, sal_uInt16 nMode );
public:
SwShadowCursor( vcl::Window& rWin, const Color& rCol )
- : pWin( &rWin ), aCol( rCol ), nOldHeight(0), nOldMode( USHRT_MAX ) {}
+ : m_pWin( &rWin ), m_aCol( rCol ), m_nOldHeight(0), m_nOldMode( USHRT_MAX ) {}
~SwShadowCursor();
void SetPos( const Point& rPt, tools::Long nHeight, sal_uInt16 nMode );