diff options
author | os <os@openoffice.org> | 2011-02-18 10:06:26 +0100 |
---|---|---|
committer | os <os@openoffice.org> | 2011-02-18 10:06:26 +0100 |
commit | 4324671ebd6b7106899526653907d20002dad7c3 (patch) | |
tree | 6a12b285709fb78de4dd6f8be51890428857feab /editeng/source/uno/unofdesc.cxx | |
parent | cd0d6a5a6775f197fdb7e78b54c8133074a7a236 (diff) |
os150: SvxFontItem member access changed to Set<member>-methods
Diffstat (limited to 'editeng/source/uno/unofdesc.cxx')
-rwxr-xr-x[-rw-r--r--] | editeng/source/uno/unofdesc.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editeng/source/uno/unofdesc.cxx b/editeng/source/uno/unofdesc.cxx index d81af6ccff0c..bc2245e7e6a9 100644..100755 --- a/editeng/source/uno/unofdesc.cxx +++ b/editeng/source/uno/unofdesc.cxx @@ -91,11 +91,11 @@ void SvxUnoFontDescriptor::FillItemSet( const awt::FontDescriptor& rDesc, SfxIte { SvxFontItem aFontItem( EE_CHAR_FONTINFO ); - aFontItem.GetFamilyName()= rDesc.Name; - aFontItem.GetStyleName() = rDesc.StyleName; - aFontItem.GetFamily() = (FontFamily)rDesc.Family; - aFontItem.GetCharSet() = rDesc.CharSet; - aFontItem.GetPitch() = (FontPitch)rDesc.Pitch; + aFontItem.SetFamilyName( rDesc.Name); + aFontItem.SetStyleName( rDesc.StyleName); + aFontItem.SetFamily( (FontFamily)rDesc.Family); + aFontItem.SetCharSet( rDesc.CharSet ); + aFontItem.SetPitch( (FontPitch)rDesc.Pitch); rSet.Put(aFontItem); } |