summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-11-04 09:05:00 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-11-04 09:11:20 +0100
commitc93db89a8f025a44ede88d16f01d11f41a818bbb (patch)
treead2c18eafb4da0cb7fe830020b011566c6133050 /sw
parentbe91a4725d851c05ea8a9ca2eb9ef01954aa06ec (diff)
sw: prefix members of SwSelUnion
Change-Id: I636454036f007dbf568f74b17e1c4c79fb36f40b
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/tblsel.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/tblsel.hxx b/sw/inc/tblsel.hxx
index cf12758248b6..b6c8950c14fb 100644
--- a/sw/inc/tblsel.hxx
+++ b/sw/inc/tblsel.hxx
@@ -121,17 +121,17 @@ bool CheckSplitCells( const SwCursor& rCrsr, sal_uInt16 nDiv,
// For working on tab selection also for split tables.
class SwSelUnion
{
- SwRect aUnion; // The rectangle enclosing the selection.
- SwTabFrm *pTable; // The (Follow-)Table for the Union.
+ SwRect m_aUnion; // The rectangle enclosing the selection.
+ SwTabFrm *m_pTable; // The (Follow-)Table for the Union.
public:
SwSelUnion( const SwRect &rRect, SwTabFrm *pTab ) :
- aUnion( rRect ), pTable( pTab ) {}
+ m_aUnion( rRect ), m_pTable( pTab ) {}
- const SwRect& GetUnion() const { return aUnion; }
- SwRect& GetUnion() { return aUnion; }
- const SwTabFrm *GetTable() const { return pTable; }
- SwTabFrm *GetTable() { return pTable; }
+ const SwRect& GetUnion() const { return m_aUnion; }
+ SwRect& GetUnion() { return m_aUnion; }
+ const SwTabFrm *GetTable() const { return m_pTable; }
+ SwTabFrm *GetTable() { return m_pTable; }
};
// Determines tables affected by a table selection and union rectangles