summaryrefslogtreecommitdiff
path: root/sw/inc/view.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-05-13 09:03:08 +0200
committerMiklos Vajna <vmiklos@collabora.com>2019-05-13 10:12:44 +0200
commit91887a3405023ab3ed36b8a5a367f90403b7d740 (patch)
treeb72c9475039c55394a55d205e8c38cd30868c511 /sw/inc/view.hxx
parent4bde8e28856efd18b1b4295bccf716bfe35a99a5 (diff)
sw: prefix members of SwView
It has a number of static members, use m_ prefix only for non-static members. Change-Id: I312b1eaadd1a7d312d4679028446cf69362e4740 Reviewed-on: https://gerrit.libreoffice.org/72215 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/inc/view.hxx')
-rw-r--r--sw/inc/view.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/view.hxx b/sw/inc/view.hxx
index d2fade9a1901..c1ed1d484b3a 100644
--- a/sw/inc/view.hxx
+++ b/sw/inc/view.hxx
@@ -149,17 +149,17 @@ class SW_DLLPUBLIC SwView: public SfxViewShell
friend class SwClipboardChangeListener;
// search & replace
- static SvxSearchItem *m_pSrchItem;
+ static SvxSearchItem *s_pSrchItem;
static sal_uInt16 m_nMoveType; // for buttons below the scrollbar (viewmdi)
static sal_Int32 m_nActMark; // current jump mark for unknown mark
- static bool m_bExtra;
- static bool m_bFound;
- static bool m_bJustOpened;
+ static bool s_bExtra;
+ static bool s_bFound;
+ static bool s_bJustOpened;
- static SearchAttrItemList* m_pSrchList;
- static SearchAttrItemList* m_pReplList;
+ static SearchAttrItemList* s_pSearchList;
+ static SearchAttrItemList* s_pReplaceList;
Timer m_aTimer; // for delayed ChgLnks during an action
OUString m_sSwViewData,
@@ -629,7 +629,7 @@ public:
SAL_DLLPRIVATE virtual bool HasPrintOptionsPage() const override;
SAL_DLLPRIVATE virtual VclPtr<SfxTabPage> CreatePrintOptionsPage(TabPageParent pParent,
const SfxItemSet& rSet) override;
- static SvxSearchItem* GetSearchItem() { return m_pSrchItem; }
+ static SvxSearchItem* GetSearchItem() { return s_pSrchItem; }
/// See SfxViewShell::getPart().
int getPart() const override;
/// See SfxViewShell::dumpAsXml().