diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-14 13:52:54 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-01-16 16:08:34 +0100 |
commit | c648d0872058941ed18499a8bf1993037d9b5532 (patch) | |
tree | 47121b3eff267e34480335130106ca1c33be6fd9 /svx/inc/galobj.hxx | |
parent | 70f360f34a9f6605864644feee3c9b9b6ffb79a1 (diff) |
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
Diffstat (limited to 'svx/inc/galobj.hxx')
-rw-r--r-- | svx/inc/galobj.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/inc/galobj.hxx b/svx/inc/galobj.hxx index d7e38dc3e939..8a68903bb3e1 100644 --- a/svx/inc/galobj.hxx +++ b/svx/inc/galobj.hxx @@ -86,7 +86,7 @@ public: const OUString GetTitle() const; void SetTitle( const OUString& rTitle ); - friend SvStream& operator<<( SvStream& rOut, const SgaObject& rObj ); + friend SvStream& WriteSgaObject( SvStream& rOut, const SgaObject& rObj ); friend SvStream& operator>>( SvStream& rIn, SgaObject& rObj ); BitmapEx createPreviewBitmapEx(const Size& rSizePixel) const; |