Kaydet (Commit) 6704bb8e authored tarafından Matteo Casalin's avatar Matteo Casalin Kaydeden (comit) Noel Power

Prefix class data members

Change-Id: I6734df58b589088809c712c3906f0cee3fd6a103
Reviewed-on: https://gerrit.libreoffice.org/1639Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
Tested-by: 's avatarMichael Stahl <mstahl@redhat.com>
Reviewed-by: 's avatarNoel Power <noel.power@suse.com>
Tested-by: 's avatarNoel Power <noel.power@suse.com>
üst 4fbf6df7
...@@ -31,27 +31,27 @@ class SwPaM; ...@@ -31,27 +31,27 @@ class SwPaM;
class SwHHCWrapper : public editeng::HangulHanjaConversion class SwHHCWrapper : public editeng::HangulHanjaConversion
{ {
SwView * pView; SwView * mpView;
Window* pWin; Window* mpWin;
SwWrtShell &rWrtShell; 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 */ 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 (needs to be sth that gets not moved like
SwPaM or SwPosition by replace operations!) */ SwPaM or SwPosition by replace operations!) */
sal_Int32 nUnitOffset; sal_Int32 mnUnitOffset;
sal_uInt16 nPageCount; ///< page count for progress bar sal_uInt16 mnPageCount; ///< page count for progress bar
sal_uInt16 nPageStart; ///< first checked page sal_uInt16 mnPageStart; ///< first checked page
sal_Bool bIsDrawObj; sal_Bool mbIsDrawObj;
sal_Bool bIsOtherCntnt; sal_Bool mbIsOtherCntnt;
sal_Bool bStartChk; sal_Bool mbStartChk;
sal_Bool bIsSelection; ///< true if only the selected text should be converted sal_Bool mbIsSelection; ///< true if only the selected text should be converted
sal_Bool bStartDone; sal_Bool mbStartDone;
sal_Bool bEndDone; sal_Bool mbEndDone;
/// from SvxSpellWrapper copied and modified /// from SvxSpellWrapper copied and modified
sal_Bool ConvNext_impl(); ///< former SpellNext sal_Bool ConvNext_impl(); ///< former SpellNext
...@@ -71,8 +71,8 @@ class SwHHCWrapper : public editeng::HangulHanjaConversion ...@@ -71,8 +71,8 @@ class SwHHCWrapper : public editeng::HangulHanjaConversion
SwPaM *pCrsr ); SwPaM *pCrsr );
void ChangeText_impl( const String &rNewText, sal_Bool bKeepAttributes ); void ChangeText_impl( const String &rNewText, sal_Bool bKeepAttributes );
inline sal_Bool IsDrawObj() { return bIsDrawObj; } inline sal_Bool IsDrawObj() { return mbIsDrawObj; }
inline void SetDrawObj( sal_Bool bNew ) { bIsDrawObj = bNew; } inline void SetDrawObj( sal_Bool bNew ) { mbIsDrawObj = bNew; }
protected: protected:
virtual void GetNextPortion( ::rtl::OUString& rNextPortion, virtual void GetNextPortion( ::rtl::OUString& rNextPortion,
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment