summaryrefslogtreecommitdiff
path: root/sw/inc/hhcwrp.hxx
diff options
context:
space:
mode:
authorMatteo Casalin <matteo.casalin@gmx.com>2013-01-10 23:13:16 +0100
committerNoel Power <noel.power@suse.com>2013-01-11 15:20:08 +0000
commit6704bb8eb0ac93da96cf58aac28c4f04e794dfd6 (patch)
treec8c97c89bf81f0a1c2468a76cbd1159829f1e299 /sw/inc/hhcwrp.hxx
parent4fbf6df784529d48cf194a2d9c495ffb47933d59 (diff)
Prefix class data members
Change-Id: I6734df58b589088809c712c3906f0cee3fd6a103 Reviewed-on: https://gerrit.libreoffice.org/1639 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com> Reviewed-by: Noel Power <noel.power@suse.com> Tested-by: Noel Power <noel.power@suse.com>
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 85ee116b5e64..1ab2251e25d5 100644
--- a/sw/inc/hhcwrp.hxx
+++ b/sw/inc/hhcwrp.hxx
@@ -31,27 +31,27 @@ class SwPaM;
class SwHHCWrapper : public editeng::HangulHanjaConversion
{
- SwView * pView;
- Window* pWin;
- SwWrtShell &rWrtShell;
+ SwView * mpView;
+ Window* mpWin;
+ SwWrtShell &mrWrtShell;
- SwConversionArgs *pConvArgs; /**< object for arguments (and results) needed
+ SwConversionArgs *mpConvArgs; /**< object for arguments (and results) needed
to find of next convertible text portion */
- xub_StrLen nLastPos; /**< starting position of the last found text part
+ xub_StrLen mnLastPos; /**< 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 nUnitOffset;
+ sal_Int32 mnUnitOffset;
- sal_uInt16 nPageCount; ///< page count for progress bar
- sal_uInt16 nPageStart; ///< first checked page
+ sal_uInt16 mnPageCount; ///< page count for progress bar
+ sal_uInt16 mnPageStart; ///< first checked page
- sal_Bool bIsDrawObj;
- sal_Bool bIsOtherCntnt;
- sal_Bool bStartChk;
- sal_Bool bIsSelection; ///< true if only the selected text should be converted
- sal_Bool bStartDone;
- sal_Bool bEndDone;
+ 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;
/// 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 bIsDrawObj; }
- inline void SetDrawObj( sal_Bool bNew ) { bIsDrawObj = bNew; }
+ inline sal_Bool IsDrawObj() { return mbIsDrawObj; }
+ inline void SetDrawObj( sal_Bool bNew ) { mbIsDrawObj = bNew; }
protected:
virtual void GetNextPortion( ::rtl::OUString& rNextPortion,