diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-08-20 21:39:27 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-08-21 09:03:21 +0200 |
commit | 123c64ab007868eaed24810d1c52ca84f7a6ac52 (patch) | |
tree | 0abd24962340197364499bf4dc64f0e22ccdac70 /comphelper/source | |
parent | 78b2d8211112df0a5938efbc8db0f8e48ae9e2e7 (diff) |
starawt -> css::awt
Change-Id: I76dd16aa2c42a649162ea2e37c824af30cdd557b
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/streaming/basicio.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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<stario::XObjectOutputStream>& operator << ( const css::uno::Reference<stario::XObjectOutputStream>& _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<stario::XObjectOutputStream>& operator << ( const css::uno::Reference<stario::XObjectInputStream>& operator >> ( const css::uno::Reference<stario::XObjectInputStream>& _rxInStream, - starawt::FontDescriptor& _rFont) + css::awt::FontDescriptor& _rFont) { // schreiben des Fontdescriptors _rFont.Name = _rxInStream->readUTF(); @@ -64,7 +64,7 @@ const css::uno::Reference<stario::XObjectInputStream>& 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()); |