From c648d0872058941ed18499a8bf1993037d9b5532 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 14 Jan 2014 13:52:54 +0200 Subject: convert SvStream::operator<< overloads to more explicit methods This is in preparation for more conversion of SvStream::operator<< calls to use more explicit method names. This converts the subclasses that have their own convenience overloads of operator<< to use normal methods. Change-Id: I5efd5d9a24c264cb86d2471303dd5849bf91ba80 --- vcl/inc/impfont.hxx | 2 +- vcl/inc/impgraph.hxx | 2 +- vcl/inc/wall2.hxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'vcl/inc') diff --git a/vcl/inc/impfont.hxx b/vcl/inc/impfont.hxx index b464ee56ed30..0a9266013f99 100644 --- a/vcl/inc/impfont.hxx +++ b/vcl/inc/impfont.hxx @@ -83,7 +83,7 @@ private: mbTransparent:1; // compatibility, now on output device friend SvStream& operator>>( SvStream& rIStm, Impl_Font& ); - friend SvStream& operator<<( SvStream& rOStm, const Impl_Font& ); + friend SvStream& WriteImpl_Font( SvStream& rOStm, const Impl_Font& ); }; // ------------------ diff --git a/vcl/inc/impgraph.hxx b/vcl/inc/impgraph.hxx index 8ccabf6711f0..76cacb7f8f47 100644 --- a/vcl/inc/impgraph.hxx +++ b/vcl/inc/impgraph.hxx @@ -160,7 +160,7 @@ private: sal_Bool ImplExportNative( SvStream& rOStm ) const; - friend SvStream& operator<<( SvStream& rOStm, const ImpGraphic& rImpGraphic ); + friend SvStream& WriteImpGraphic( SvStream& rOStm, const ImpGraphic& rImpGraphic ); friend SvStream& operator>>( SvStream& rIStm, ImpGraphic& rImpGraphic ); // SvgData support diff --git a/vcl/inc/wall2.hxx b/vcl/inc/wall2.hxx index f47c8f663cea..c6329b6abbe4 100644 --- a/vcl/inc/wall2.hxx +++ b/vcl/inc/wall2.hxx @@ -36,7 +36,7 @@ private: BitmapEx* mpCache; friend SvStream& operator>>( SvStream& rIStm, ImplWallpaper& rImplWallpaper ); - friend SvStream& operator<<( SvStream& rOStm, const ImplWallpaper& rImplWallpaper ); + friend SvStream& WriteImplWallpaper( SvStream& rOStm, const ImplWallpaper& rImplWallpaper ); public: ImplWallpaper(); -- cgit