From 123c64ab007868eaed24810d1c52ca84f7a6ac52 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Wed, 20 Aug 2014 21:39:27 +0200 Subject: starawt -> css::awt Change-Id: I76dd16aa2c42a649162ea2e37c824af30cdd557b --- comphelper/source/streaming/basicio.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'comphelper/source/streaming') diff --git a/comphelper/source/streaming/basicio.cxx b/comphelper/source/streaming/basicio.cxx index d81ec90c79a9..0680af68ca04 100644 --- a/comphelper/source/streaming/basicio.cxx +++ b/comphelper/source/streaming/basicio.cxx @@ -27,7 +27,7 @@ namespace comphelper const css::uno::Reference& operator << ( const css::uno::Reference& _rxOutStream, - const starawt::FontDescriptor& _rFont) + const css::awt::FontDescriptor& _rFont) { _rxOutStream->writeUTF( _rFont.Name ); _rxOutStream->writeShort( _rFont.Height ); @@ -52,7 +52,7 @@ const css::uno::Reference& operator << ( const css::uno::Reference& operator >> ( const css::uno::Reference& _rxInStream, - starawt::FontDescriptor& _rFont) + css::awt::FontDescriptor& _rFont) { // schreiben des Fontdescriptors _rFont.Name = _rxInStream->readUTF(); @@ -64,7 +64,7 @@ const css::uno::Reference& operator >> ( _rFont.Pitch = _rxInStream->readShort(); _rFont.CharacterWidth = static_cast< float >(_rxInStream->readDouble()); _rFont.Weight = static_cast< float >(_rxInStream->readDouble()); - _rFont.Slant = (starawt::FontSlant)_rxInStream->readShort(); + _rFont.Slant = (css::awt::FontSlant)_rxInStream->readShort(); _rFont.Underline = _rxInStream->readShort(); _rFont.Strikeout = _rxInStream->readShort(); _rFont.Orientation = static_cast< float >(_rxInStream->readDouble()); -- cgit v1.2.3