summaryrefslogtreecommitdiff
path: root/svx/source/mnuctrls
diff options
context:
space:
mode:
authoros <os@openoffice.org>2011-02-18 10:06:26 +0100
committeros <os@openoffice.org>2011-02-18 10:06:26 +0100
commit4324671ebd6b7106899526653907d20002dad7c3 (patch)
tree6a12b285709fb78de4dd6f8be51890428857feab /svx/source/mnuctrls
parentcd0d6a5a6775f197fdb7e78b54c8133074a7a236 (diff)
os150: SvxFontItem member access changed to Set<member>-methods
Diffstat (limited to 'svx/source/mnuctrls')
-rwxr-xr-x[-rw-r--r--]svx/source/mnuctrls/fntctl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/mnuctrls/fntctl.cxx b/svx/source/mnuctrls/fntctl.cxx
index 4f51e111c2c3..b10eac69bc54 100644..100755
--- a/svx/source/mnuctrls/fntctl.cxx
+++ b/svx/source/mnuctrls/fntctl.cxx
@@ -148,7 +148,7 @@ void SvxFontMenuControl::Notify( SfxBroadcaster&, const SfxHint& rHint )
IMPL_LINK_INLINE_START( SvxFontMenuControl, MenuSelect, FontNameMenu *, pMen )
{
SvxFontItem aItem( GetId() );
- aItem.GetFamilyName() = pMen->GetCurName();
+ aItem.SetFamilyName(pMen->GetCurName());
GetBindings().GetDispatcher()->Execute( GetId(), SFX_CALLMODE_RECORD, &aItem, 0L );
return 0;
}