diff options
Diffstat (limited to 'editeng/source/items/bulitem.cxx')
-rw-r--r-- | editeng/source/items/bulitem.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/editeng/source/items/bulitem.cxx b/editeng/source/items/bulitem.cxx index 28f4dfdd4e1d..68eaf2c2993b 100644 --- a/editeng/source/items/bulitem.cxx +++ b/editeng/source/items/bulitem.cxx @@ -34,7 +34,7 @@ TYPEINIT1(SvxBulletItem,SfxPoolItem); -void SvxBulletItem::StoreFont( SvStream& rStream, const Font& rFont ) +void SvxBulletItem::StoreFont( SvStream& rStream, const vcl::Font& rFont ) { sal_uInt16 nTemp; @@ -61,9 +61,9 @@ void SvxBulletItem::StoreFont( SvStream& rStream, const Font& rFont ) -Font SvxBulletItem::CreateFont( SvStream& rStream, sal_uInt16 nVer ) +vcl::Font SvxBulletItem::CreateFont( SvStream& rStream, sal_uInt16 nVer ) { - Font aFont; + vcl::Font aFont; Color aColor; ReadColor( rStream, aColor ); aFont.SetColor( aColor ); sal_uInt16 nTemp; @@ -237,8 +237,8 @@ sal_uInt16 SvxBulletItem::GetVersion( sal_uInt16 /*nVersion*/ ) const void SvxBulletItem::CopyValidProperties( const SvxBulletItem& rCopyFrom ) { - Font _aFont = GetFont(); - Font aNewFont = rCopyFrom.GetFont(); + vcl::Font _aFont = GetFont(); + vcl::Font aNewFont = rCopyFrom.GetFont(); if ( rCopyFrom.IsValid( VALID_FONTNAME ) ) { _aFont.SetName( aNewFont.GetName() ); |