Kaydet (Commit) 43513fec authored tarafından Matteo Casalin's avatar Matteo Casalin Kaydeden (comit) Fridrich Strba

Prefer standard prefix for data members

Change-Id: Ic0d0cdc88ee17bdeeb53855162085c30b25f9004
Reviewed-on: https://gerrit.libreoffice.org/3540Reviewed-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
Tested-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
üst 6e2bc640
...@@ -29,24 +29,24 @@ class EditView; ...@@ -29,24 +29,24 @@ class EditView;
class TextConvWrapper : public editeng::HangulHanjaConversion class TextConvWrapper : public editeng::HangulHanjaConversion
{ {
OUString aConvText; // convertible text part found last time OUString m_aConvText; // convertible text part found last time
LanguageType nConvTextLang; // language of aConvText LanguageType m_nConvTextLang; // language of aConvText
sal_uInt16 nLastPos; // starting position of the last found text portion (word) sal_uInt16 m_nUnitOffset; // offset of current unit in the current text portion (word)
sal_uInt16 nUnitOffset; // offset of current unit in the current text portion (word) sal_uInt16 m_nLastPos; // starting position of the last found text portion (word)
ESelection aConvSel; // selection to be converted if ESelection m_aConvSel; // selection to be converted if
// 'HasRange' is true, other conversion // 'HasRange' is true, other conversion
// starts from the cursor position // starts from the cursor position
EditView * pEditView; EditView * m_pEditView;
Window * pWin; Window * m_pWin;
bool bStartChk; bool m_bStartChk;
bool bStartDone; bool m_bStartDone;
bool bEndDone; bool m_bEndDone;
bool bAllowChange; // storage for _bAllowImplicitChangesForNotConvertibleText bool m_bAllowChange; // storage for _bAllowImplicitChangesForNotConvertibleText
// parameters value of function GetNextPortion. // parameters value of function GetNextPortion.
// used to transport the value to where it is needed. // used to transport the value to where it is needed.
// from SvxSpellWrapper copied and modified // from SvxSpellWrapper copied and modified
......
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