summaryrefslogtreecommitdiff
path: root/sw/source/core/text/porftn.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-11-30 23:01:33 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-12-01 09:10:20 +0100
commit035fad219e1729c9e4fe8a54fd85f23c065de616 (patch)
treeaa7ff1b3ec785d99b61ce7e53302759511748207 /sw/source/core/text/porftn.hxx
parent719f2e8462faf102f780fd2cfa932c84a776bbc6 (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/porftn.hxx')
-rw-r--r--sw/source/core/text/porftn.hxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/sw/source/core/text/porftn.hxx b/sw/source/core/text/porftn.hxx
index f51fced71be9..fe6be2e291d8 100644
--- a/sw/source/core/text/porftn.hxx
+++ b/sw/source/core/text/porftn.hxx
@@ -45,7 +45,6 @@ public:
void SetPreferredScriptType( SwFontScript nPreferredScriptType );
const SwTextFootnote* GetTextFootnote() const { return pFootnote; };
- OUTPUT_OPERATOR_OVERRIDE
};
class SwFootnoteNumPortion : public SwNumberPortion
@@ -54,8 +53,6 @@ public:
SwFootnoteNumPortion( const OUString &rExpand, SwFont *pFntL )
: SwNumberPortion( rExpand, pFntL, true, false, 0, false )
{ SetWhichPor( POR_FTNNUM ); }
-
- OUTPUT_OPERATOR_OVERRIDE
};
class SwQuoVadisPortion : public SwFieldPortion
@@ -76,8 +73,6 @@ public:
// Accessibility: pass information about this portion to the PortionHandler
virtual void HandlePortion( SwPortionHandler& rPH ) const override;
-
- OUTPUT_OPERATOR_OVERRIDE
};
class SwErgoSumPortion : public SwFieldPortion
@@ -89,7 +84,6 @@ public:
// Field cloner for SplitGlue
virtual SwFieldPortion *Clone( const OUString &rExpand ) const override;
- OUTPUT_OPERATOR_OVERRIDE
};
#endif