summaryrefslogtreecommitdiff
path: root/sc/source/filter
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-11-09 23:04:29 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-11-28 13:28:29 -0500
commit78ac5e853302566b191dd902ef75c1e16c48ccf1 (patch)
treed8d1660ecfccb09ee20ffcca4c5906b8c1344161 /sc/source/filter
parentf10c5f33c17093bac8dd09b1a3b6ea39bdb6020c (diff)
Remove debug statements.
Change-Id: I3e3d4863bef27e91b95f9e6cbe5c2daa81ece0b2
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/orcus/orcusfiltersimpl.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/sc/source/filter/orcus/orcusfiltersimpl.cxx b/sc/source/filter/orcus/orcusfiltersimpl.cxx
index ba3701a5b6d9..258477064398 100644
--- a/sc/source/filter/orcus/orcusfiltersimpl.cxx
+++ b/sc/source/filter/orcus/orcusfiltersimpl.cxx
@@ -113,11 +113,8 @@ orcus::spreadsheet::iface::import_sheet* ScOrcusFactory::get_sheet(const char* s
OUString aTabName(sheet_name, sheet_name_length, RTL_TEXTENCODING_UTF8);
SCTAB nTab = -1;
if (!mrDoc.GetTable(aTabName, nTab))
- {
// Sheet by that name not found.
- fprintf(stdout, "ScOrcusFactory::get_sheet: no such sheet!!! (%s)\n", rtl::OUStringToOString(aTabName, RTL_TEXTENCODING_UTF8).getStr());
return NULL;
- }
// See if we already have an orcus sheet instance by that index.
boost::ptr_vector<ScOrcusSheet>::iterator it =
@@ -349,7 +346,6 @@ public:
InsertFieldPath(orcus::orcus_xml& rFilter) : mrFilter(rFilter) {}
void operator() (const OString& rPath)
{
- fprintf(stdout, "InsertFieldPath::(): field path = '%s'\n", rPath.getStr());
mrFilter.append_field_link(rPath.getStr());
}
};