Kaydet (Commit) 2d028dfe authored tarafından Khaled Hosny's avatar Khaled Hosny

Prefix members

Change-Id: I342ac49877c928c52eb3001f5a7bab07588636fa
Reviewed-on: https://gerrit.libreoffice.org/34463Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarKhaled Hosny <khaledhosny@eglug.org>
üst 65cfa0ee
...@@ -54,16 +54,16 @@ class SpellChecker : ...@@ -54,16 +54,16 @@ class SpellChecker :
XServiceDisplayName XServiceDisplayName
> >
{ {
Sequence< Locale > aSuppLocales; Sequence< Locale > m_aSuppLocales;
Hunspell ** aDicts; Hunspell ** m_aDicts;
rtl_TextEncoding * aDEncs; rtl_TextEncoding * m_aDEncs;
Locale * aDLocs; Locale * m_aDLocs;
OUString * aDNames; OUString * m_aDNames;
sal_Int32 numdict; sal_Int32 m_nNumDict;
::comphelper::OInterfaceContainerHelper2 aEvtListeners; ::comphelper::OInterfaceContainerHelper2 m_aEvtListeners;
linguistic::PropertyHelper_Spelling* pPropHelper; linguistic::PropertyHelper_Spelling* m_pPropHelper;
bool bDisposing; bool m_bDisposing;
SpellChecker(const SpellChecker &) = delete; SpellChecker(const SpellChecker &) = delete;
SpellChecker & operator = (const SpellChecker &) = delete; SpellChecker & operator = (const SpellChecker &) = delete;
...@@ -71,7 +71,7 @@ class SpellChecker : ...@@ -71,7 +71,7 @@ class SpellChecker :
linguistic::PropertyHelper_Spelling& GetPropHelper_Impl(); linguistic::PropertyHelper_Spelling& GetPropHelper_Impl();
linguistic::PropertyHelper_Spelling& GetPropHelper() linguistic::PropertyHelper_Spelling& GetPropHelper()
{ {
return pPropHelper ? *pPropHelper : GetPropHelper_Impl(); return m_pPropHelper ? *m_pPropHelper : GetPropHelper_Impl();
} }
sal_Int16 GetSpellFailure( const OUString &rWord, const Locale &rLocale ); sal_Int16 GetSpellFailure( const OUString &rWord, const Locale &rLocale );
......
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