summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-03-26 17:47:58 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-03-26 17:47:58 +0100
commita4da8e041bd3d6b6c286bafb5a43c6a2ba25dc4d (patch)
treed2f5117baf1a213c65a4707e9ec93c5cb9f51e0f
parentc2d130425cc876cceb96cc7e47636426a9e48fa8 (diff)
remove debug functions
Change-Id: I7a3aaa223c08d9fc79baeed59546d7268bd8e57b
-rw-r--r--sc/source/core/data/colorscale.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/sc/source/core/data/colorscale.cxx b/sc/source/core/data/colorscale.cxx
index d4788233033b..f5b4d527a06e 100644
--- a/sc/source/core/data/colorscale.cxx
+++ b/sc/source/core/data/colorscale.cxx
@@ -34,23 +34,6 @@ ScFormulaListener::ScFormulaListener(ScDocument* pDoc):
{
}
-namespace {
-
-std::ostream& operator<<(std::ostream& rStrm, const ScAddress& rAddr)
-{
- rStrm << "Col: " << rAddr.Col() << ", Row: " << rAddr.Row() << ", Tab: " << rAddr.Tab();
- return rStrm;
-}
-
-std::ostream& operator<<(std::ostream& rStrm, const ScRange& rRange)
-{
- rStrm << "Start: " << rRange.aStart << std::endl;
- rStrm << "End: " << rRange.aEnd << std::endl;
- return rStrm;
-}
-
-}
-
void ScFormulaListener::startListening(ScTokenArray* pArr, const ScRange& rRange)
{
if (!pArr)