summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/stgdir.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-08 21:54:42 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-09 08:05:48 +0200
commit6829819e1c7587ff00eaef710ec3cf24a892aa98 (patch)
tree1397b1c0b26c6e5f11c6f5f4f98652071cd6626e /sot/source/sdstor/stgdir.hxx
parent4bc78704fed3a5fd52668ca678212f6b9e8d0eac (diff)
sot: prefix members of StgDirStrm
Change-Id: I2ae1ed9906c93f48813ccadcaa6f4b8e42bedbc9
Diffstat (limited to 'sot/source/sdstor/stgdir.hxx')
-rw-r--r--sot/source/sdstor/stgdir.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sot/source/sdstor/stgdir.hxx b/sot/source/sdstor/stgdir.hxx
index bd6cfb3a0456..25c854d021e7 100644
--- a/sot/source/sdstor/stgdir.hxx
+++ b/sot/source/sdstor/stgdir.hxx
@@ -91,8 +91,8 @@ public:
class StgDirStrm : public StgDataStrm
{
friend class StgIterator;
- StgDirEntry* pRoot; // root of dir tree
- short nEntries; // entries per page
+ StgDirEntry* m_pRoot; // root of dir tree
+ short m_nEntries; // entries per page
void SetupEntry( sal_Int32, StgDirEntry* );
public:
explicit StgDirStrm( StgIo& );
@@ -100,7 +100,7 @@ public:
virtual bool SetSize( sal_Int32 ) SAL_OVERRIDE; // change the size
bool Store();
void* GetEntry( sal_Int32 n, bool=false );// get an entry
- StgDirEntry* GetRoot() { return pRoot; }
+ StgDirEntry* GetRoot() { return m_pRoot; }
StgDirEntry* Find( StgDirEntry&, const OUString& );
StgDirEntry* Create( StgDirEntry&, const OUString&, StgEntryType );
};