summaryrefslogtreecommitdiff
path: root/sw/inc/hints.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-27 08:42:35 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-27 08:43:28 +0100
commit163b3d7ca0056d16b300b68d7e831874b6cf393a (patch)
treee1de2a23173389794e15386f014a169897ba1076 /sw/inc/hints.hxx
parentd82d89ad27657a9f937e8ed44574626e1564102a (diff)
sw: prefix members of SwTableFormulaUpdate
Change-Id: Id9e18c67a4fa6e3646ac33cd616838819d1f10d8
Diffstat (limited to 'sw/inc/hints.hxx')
-rw-r--r--sw/inc/hints.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx
index 47808f86976d..97a639773f75 100644
--- a/sw/inc/hints.hxx
+++ b/sw/inc/hints.hxx
@@ -162,16 +162,16 @@ enum TableFormulaUpdateFlags { TBL_CALC = 0,
class SwTableFormulaUpdate : public SwMsgPoolItem
{
public:
- const SwTable* pTable; ///< Pointer to the current table
+ const SwTable* m_pTable; ///< Pointer to the current table
union {
const SwTable* pDelTable; ///< Merge: Pointer to the table to be removed
const OUString* pNewTableNm; ///< Split: the name of the new table
- } DATA;
- SwHistory* pHistory;
- sal_uInt16 nSplitLine; ///< Split: from this BaseLine on will be splitted
- TableFormulaUpdateFlags eFlags;
- bool bModified : 1;
- bool bBehindSplitLine : 1;
+ } m_aData;
+ SwHistory* m_pHistory;
+ sal_uInt16 m_nSplitLine; ///< Split: from this BaseLine on will be splitted
+ TableFormulaUpdateFlags m_eFlags;
+ bool m_bModified : 1;
+ bool m_bBehindSplitLine : 1;
/** Is sent if a table should be recalculated */
SwTableFormulaUpdate( const SwTable* );