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 /include/editeng | |
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 'include/editeng')
-rw-r--r-- | include/editeng/adjustitem.hxx | 2 | ||||
-rw-r--r-- | include/editeng/hyphenzoneitem.hxx | 2 | ||||
-rw-r--r-- | include/editeng/lspcitem.hxx | 2 | ||||
-rw-r--r-- | include/editeng/orphitem.hxx | 2 | ||||
-rw-r--r-- | include/editeng/tstpitem.hxx | 2 | ||||
-rw-r--r-- | include/editeng/widwitem.hxx | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/include/editeng/adjustitem.hxx b/include/editeng/adjustitem.hxx index 642d036b0df7..c6ca55c0ee2f 100644 --- a/include/editeng/adjustitem.hxx +++ b/include/editeng/adjustitem.hxx @@ -46,7 +46,7 @@ class EDITENG_DLLPUBLIC SvxAdjustItem : public SfxEnumItemInterface sal_Bool bLastCenter : 1; sal_Bool bLastBlock : 1; - friend SvStream& operator<<( SvStream&, SvxAdjustItem& ); //$ ostream + friend SvStream& WriteSvxAdjustItem( SvStream&, SvxAdjustItem& ); //$ ostream public: TYPEINFO(); diff --git a/include/editeng/hyphenzoneitem.hxx b/include/editeng/hyphenzoneitem.hxx index 5d1cd576e610..84bcec055b9a 100644 --- a/include/editeng/hyphenzoneitem.hxx +++ b/include/editeng/hyphenzoneitem.hxx @@ -40,7 +40,7 @@ class EDITENG_DLLPUBLIC SvxHyphenZoneItem : public SfxPoolItem sal_uInt8 nMinTrail; sal_uInt8 nMaxHyphens; - friend SvStream & operator<<( SvStream & aS, SvxHyphenZoneItem & ); + friend SvStream & WriteSvxHyphenZoneItem( SvStream & aS, SvxHyphenZoneItem & ); public: TYPEINFO(); diff --git a/include/editeng/lspcitem.hxx b/include/editeng/lspcitem.hxx index 8bb2fadfa5ef..54ff961040c0 100644 --- a/include/editeng/lspcitem.hxx +++ b/include/editeng/lspcitem.hxx @@ -34,7 +34,7 @@ class SvXMLUnitConverter; #define LINE_SPACE_DEFAULT_HEIGHT 200 class EDITENG_DLLPUBLIC SvxLineSpacingItem : public SfxEnumItemInterface { - friend SvStream& operator<<( SvStream&, SvxLineSpacingItem& ); //$ ostream + friend SvStream& WriteSvxLineSpacingItem( SvStream&, SvxLineSpacingItem& ); //$ ostream short nInterLineSpace; sal_uInt16 nLineHeight; diff --git a/include/editeng/orphitem.hxx b/include/editeng/orphitem.hxx index 9fbacf2952d9..f0f10d48cdb9 100644 --- a/include/editeng/orphitem.hxx +++ b/include/editeng/orphitem.hxx @@ -33,7 +33,7 @@ class SvXMLUnitConverter; class EDITENG_DLLPUBLIC SvxOrphansItem: public SfxByteItem { - friend SvStream & operator<<( SvStream & aS, SvxOrphansItem & ); + friend SvStream & WriteSvxOrphansItem( SvStream & aS, SvxOrphansItem & ); public: TYPEINFO(); diff --git a/include/editeng/tstpitem.hxx b/include/editeng/tstpitem.hxx index 5f47d6407997..719f50239664 100644 --- a/include/editeng/tstpitem.hxx +++ b/include/editeng/tstpitem.hxx @@ -41,7 +41,7 @@ private: mutable sal_Unicode m_cDecimal; sal_Unicode cFill; - EDITENG_DLLPRIVATE friend SvStream& operator<<( SvStream&, SvxTabStop& ); + EDITENG_DLLPRIVATE friend SvStream& WriteSvxTabStop( SvStream&, SvxTabStop& ); void fillDecimal() const; diff --git a/include/editeng/widwitem.hxx b/include/editeng/widwitem.hxx index ef0d8ac9ddc1..ec1c42f06349 100644 --- a/include/editeng/widwitem.hxx +++ b/include/editeng/widwitem.hxx @@ -33,7 +33,7 @@ class SvXMLUnitConverter; class EDITENG_DLLPUBLIC SvxWidowsItem: public SfxByteItem { - friend SvStream & operator<<( SvStream & aS, SvxWidowsItem & ); + friend SvStream & WriteSvxWidowsItem( SvStream & aS, SvxWidowsItem & ); public: TYPEINFO(); |