summaryrefslogtreecommitdiff
path: root/sw/inc/hhcwrp.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@gmx.com>2013-01-11 18:50:30 +0100
committerMatteo Casalin <matteo.casalin@gmx.com>2013-01-11 19:07:49 +0100
commitb0cf4b3ef6438b1e049ed7db5840d698f3200a34 (patch)
tree1206959fe26f18ef975f7d9acca1c51c8fd9a828 /sw/inc/hhcwrp.hxx
parentd99abd61a9091426bfccd871d6a8f036d5f49479 (diff)
Update name of data members to preferred convention
Change-Id: I2ce959942f95a123d2ec75a7df2194dff11fac64
Diffstat (limited to 'sw/inc/hhcwrp.hxx')
-rw-r--r--sw/inc/hhcwrp.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/sw/inc/hhcwrp.hxx b/sw/inc/hhcwrp.hxx
index 1ab2251e25d5..18fcd65be37e 100644
--- a/sw/inc/hhcwrp.hxx
+++ b/sw/inc/hhcwrp.hxx
@@ -31,27 +31,27 @@ class SwPaM;
class SwHHCWrapper : public editeng::HangulHanjaConversion
{
- SwView * mpView;
- Window* mpWin;
- SwWrtShell &mrWrtShell;
+ SwView * m_pView;
+ Window* m_pWin;
+ SwWrtShell &m_rWrtShell;
- SwConversionArgs *mpConvArgs; /**< object for arguments (and results) needed
+ SwConversionArgs *m_pConvArgs; /**< object for arguments (and results) needed
to find of next convertible text portion */
- xub_StrLen mnLastPos; /**< starting position of the last found text part
+ xub_StrLen m_nLastPos; /**< starting position of the last found text part
(needs to be sth that gets not moved like
SwPaM or SwPosition by replace operations!) */
- sal_Int32 mnUnitOffset;
+ sal_Int32 m_nUnitOffset;
- sal_uInt16 mnPageCount; ///< page count for progress bar
- sal_uInt16 mnPageStart; ///< first checked page
+ sal_uInt16 m_nPageCount; ///< page count for progress bar
+ sal_uInt16 m_nPageStart; ///< first checked page
- sal_Bool mbIsDrawObj;
- sal_Bool mbIsOtherCntnt;
- sal_Bool mbStartChk;
- sal_Bool mbIsSelection; ///< true if only the selected text should be converted
- sal_Bool mbStartDone;
- sal_Bool mbEndDone;
+ sal_Bool m_bIsDrawObj;
+ sal_Bool m_bIsOtherCntnt;
+ sal_Bool m_bStartChk;
+ sal_Bool m_bIsSelection; ///< true if only the selected text should be converted
+ sal_Bool m_bStartDone;
+ sal_Bool m_bEndDone;
/// from SvxSpellWrapper copied and modified
sal_Bool ConvNext_impl(); ///< former SpellNext
@@ -71,8 +71,8 @@ class SwHHCWrapper : public editeng::HangulHanjaConversion
SwPaM *pCrsr );
void ChangeText_impl( const String &rNewText, sal_Bool bKeepAttributes );
- inline sal_Bool IsDrawObj() { return mbIsDrawObj; }
- inline void SetDrawObj( sal_Bool bNew ) { mbIsDrawObj = bNew; }
+ inline sal_Bool IsDrawObj() { return m_bIsDrawObj; }
+ inline void SetDrawObj( sal_Bool bNew ) { m_bIsDrawObj = bNew; }
protected:
virtual void GetNextPortion( ::rtl::OUString& rNextPortion,