summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/stgstrms.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-08 21:45:11 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-09 08:05:45 +0200
commit0147e744e656704bbd99b918f3657ee4fe374495 (patch)
treec510d42149360d80b276b9545908f8a599105bb6 /sot/source/sdstor/stgstrms.hxx
parent745c0074f9d18f5c6184ecbd6438b04f27b756d1 (diff)
sot: prefix members of StgFAT
Change-Id: I0a22ca51d5fd8fb8dedd418932fd84fa3039c258
Diffstat (limited to 'sot/source/sdstor/stgstrms.hxx')
-rw-r--r--sot/source/sdstor/stgstrms.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sot/source/sdstor/stgstrms.hxx b/sot/source/sdstor/stgstrms.hxx
index 33ff1935f957..1e46e69d6f43 100644
--- a/sot/source/sdstor/stgstrms.hxx
+++ b/sot/source/sdstor/stgstrms.hxx
@@ -35,13 +35,13 @@ class StgDirEntry;
class StgFAT
{ // FAT allocator
- StgStrm& rStrm; // underlying stream
- sal_Int32 nMaxPage; // highest page allocated so far
- short nPageSize; // physical page size
- short nEntries; // FAT entries per page
- short nOffset; // current offset within page
- sal_Int32 nLimit; // search limit recommendation
- bool bPhys; // true: physical FAT
+ StgStrm& m_rStrm; // underlying stream
+ sal_Int32 m_nMaxPage; // highest page allocated so far
+ short m_nPageSize; // physical page size
+ short m_nEntries; // FAT entries per page
+ short m_nOffset; // current offset within page
+ sal_Int32 m_nLimit; // search limit recommendation
+ bool m_bPhys; // true: physical FAT
rtl::Reference< StgPage > GetPhysPage( sal_Int32 nPage );
bool MakeChain( sal_Int32 nStart, sal_Int32 nPages );
bool InitNew( sal_Int32 nPage1 );
@@ -51,8 +51,8 @@ public:
sal_Int32 GetNextPage( sal_Int32 nPg );
sal_Int32 AllocPages( sal_Int32 nStart, sal_Int32 nPages );
bool FreePages( sal_Int32 nStart, bool bAll );
- sal_Int32 GetMaxPage() { return nMaxPage; }
- void SetLimit( sal_Int32 n ) { nLimit = n; }
+ sal_Int32 GetMaxPage() { return m_nMaxPage; }
+ void SetLimit( sal_Int32 n ) { m_nLimit = n; }
};
// The base stream class provides basic functionality for seeking