diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-11-30 23:01:33 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-12-01 09:10:20 +0100 |
commit | 035fad219e1729c9e4fe8a54fd85f23c065de616 (patch) | |
tree | aa7ff1b3ec785d99b61ce7e53302759511748207 /sw/source/core/text/portab.hxx | |
parent | 719f2e8462faf102f780fd2cfa932c84a776bbc6 (diff) |
sw: remove SvStream operator<< functions of layout classes
This could be useful debugging functionality, but:
- we have a layout dump feature already, which is available in
dbglevel<2 (and even non-dbgutil) builds already
- for SAL_DEBUG() these functions would have to work with an STL stream,
not with an SvStream
So there is little value in keeping these.
Change-Id: I1d894f79d3e637f5a56d68abda275ea66d5d0635
Diffstat (limited to 'sw/source/core/text/portab.hxx')
-rw-r--r-- | sw/source/core/text/portab.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sw/source/core/text/portab.hxx b/sw/source/core/text/portab.hxx index 3656f216239e..996743baff14 100644 --- a/sw/source/core/text/portab.hxx +++ b/sw/source/core/text/portab.hxx @@ -40,8 +40,6 @@ public: // Accessibility: pass information about this portion to the PortionHandler virtual void HandlePortion( SwPortionHandler& rPH ) const override; - - OUTPUT_OPERATOR_OVERRIDE }; class SwTabLeftPortion : public SwTabPortion @@ -50,7 +48,6 @@ public: SwTabLeftPortion( const sal_uInt16 nTabPosVal, const sal_Unicode cFillChar, bool bAutoTab ) : SwTabPortion( nTabPosVal, cFillChar, bAutoTab ) { SetWhichPor( POR_TABLEFT ); } - OUTPUT_OPERATOR_OVERRIDE }; class SwTabRightPortion : public SwTabPortion @@ -59,7 +56,6 @@ public: SwTabRightPortion( const sal_uInt16 nTabPosVal, const sal_Unicode cFillChar ) : SwTabPortion( nTabPosVal, cFillChar ) { SetWhichPor( POR_TABRIGHT ); } - OUTPUT_OPERATOR_OVERRIDE }; class SwTabCenterPortion : public SwTabPortion @@ -68,7 +64,6 @@ public: SwTabCenterPortion( const sal_uInt16 nTabPosVal, const sal_Unicode cFillChar ) : SwTabPortion( nTabPosVal, cFillChar ) { SetWhichPor( POR_TABCENTER ); } - OUTPUT_OPERATOR_OVERRIDE }; class SwTabDecimalPortion : public SwTabPortion @@ -100,8 +95,6 @@ public: { return mnWidthOfPortionsUpTpDecimalPosition; } - - OUTPUT_OPERATOR_OVERRIDE }; class SwAutoTabDecimalPortion : public SwTabDecimalPortion |