summaryrefslogtreecommitdiff
path: root/sw/inc/bparr.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2016-11-28 11:07:02 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-11-28 12:47:28 +0000
commit1ca67dcaefe794c683b99382ba8bac0f736a7f0b (patch)
treef5a4e7a979836114e8ff118462a8e24ffd47885f /sw/inc/bparr.hxx
parent4ae4833277667d79e3625514f28b0cf72b0636f1 (diff)
sw: prefix members of BigPtrArray
Change-Id: I87a91fad09616add823e7e556597419d02e43c6c Reviewed-on: https://gerrit.libreoffice.org/31311 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc/bparr.hxx')
-rw-r--r--sw/inc/bparr.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/bparr.hxx b/sw/inc/bparr.hxx
index 9ec8c91869b6..53a3f184bc36 100644
--- a/sw/inc/bparr.hxx
+++ b/sw/inc/bparr.hxx
@@ -61,12 +61,12 @@ struct BlockInfo { // block info:
class SW_DLLPUBLIC BigPtrArray
{
protected:
- BlockInfo** ppInf; // block info
- sal_uLong nSize; ///< number of elements
- sal_uInt16 nMaxBlock; ///< current max. number of blocks
- sal_uInt16 nBlock; ///< number of blocks
+ BlockInfo** m_ppInf; // block info
+ sal_uLong m_nSize; ///< number of elements
+ sal_uInt16 m_nMaxBlock; ///< current max. number of blocks
+ sal_uInt16 m_nBlock; ///< number of blocks
mutable
- sal_uInt16 nCur; ///< last used block
+ sal_uInt16 m_nCur; ///< last used block
sal_uInt16 Index2Block( sal_uLong ) const; ///< block search
BlockInfo* InsBlock( sal_uInt16 ); ///< insert block
@@ -80,7 +80,7 @@ public:
BigPtrArray();
~BigPtrArray();
- sal_uLong Count() const { return nSize; }
+ sal_uLong Count() const { return m_nSize; }
void Insert( const ElementPtr& r, sal_uLong pos );
void Remove( sal_uLong pos, sal_uLong n = 1 );