summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-01-05 18:28:05 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2012-01-05 18:40:19 +0100
commitac7f046d27b4e47361f44efe252fca867a0a1d02 (patch)
treef8e54a84713c625f9860104e048a4f3e558cb346
parentcb76b35b60b3194e45627edc293e3ce7a652941f (diff)
remove unneeded debug statements
-rw-r--r--sc/source/core/tool/token.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 6ef4346029fa..8196b8a605f8 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -52,9 +52,6 @@
#include "externalrefmgr.hxx"
#include "document.hxx"
-#include <iostream>
-#include <rtl/oustringostreaminserter.hxx>
-
using ::std::vector;
#include <com/sun/star/sheet/ComplexReference.hpp>
@@ -1831,13 +1828,11 @@ void GetExternalTableData(const ScDocument* pOldDoc, const ScDocument* pNewDoc,
rTabName = pOldDoc->GetCopyTabName(nTab);
if (rTabName.isEmpty())
pOldDoc->GetName(nTab, rTabName);
- std::cout << "TabName: " << rTabName << std::endl;
}
bool IsInCopyRange( const ScRange& rRange, const ScDocument* pClipDoc )
{
ScClipParam& rClipParam = const_cast<ScDocument*>(pClipDoc)->GetClipParam();
- std::cout << "Col: " << rRange.aStart.Col() << "Row: " << rRange.aStart.Row() << "Tab: " << rRange.aStart.Tab() << std::endl;
return rClipParam.maRanges.In(rRange);
}