diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-08-06 16:07:48 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-08-08 23:25:26 +0200 |
commit | 28f38798fcf319e3ff9ce23b4e3e0425dedcbc7e (patch) | |
tree | a99593887748bb9e9eed0ef7a2b64a1520c43c16 /include | |
parent | 4c0d933278c13b6197da40deaf4842fcf57c37ca (diff) |
SvxFont: remove duplicate LanguageType member
... that already exists in Font baseclass.
Change-Id: Ia87e8b791e153bdd4ddc6c84eba6b4f37d127dca
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/svxfont.hxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/editeng/svxfont.hxx b/include/editeng/svxfont.hxx index 858157453aa1..842483cf6c0b 100644 --- a/include/editeng/svxfont.hxx +++ b/include/editeng/svxfont.hxx @@ -38,7 +38,6 @@ class Size; class EDITENG_DLLPUBLIC SvxFont : public Font { - LanguageType eLang; // Language SvxCaseMap eCaseMap; // Text Markup short nEsc; // Degree of Superscript/Subscript sal_uInt8 nPropr; // Degree of reduction of the font height @@ -65,10 +64,6 @@ public: inline SvxCaseMap GetCaseMap() const { return eCaseMap; } inline void SetCaseMap( const SvxCaseMap eNew ) { eCaseMap = eNew; } - inline LanguageType GetLanguage() const { return eLang; } - inline void SetLanguage( const LanguageType eNewLan ) - { eLang = eNewLan; Font::SetLanguage(eNewLan); } - // Is-Methods: inline sal_Bool IsCaseMap() const { return SVX_CASEMAP_NOT_MAPPED != eCaseMap; } inline sal_Bool IsCapital() const { return SVX_CASEMAP_KAPITAELCHEN == eCaseMap; } |