From 8a0d4ff715738f30a368f58e787d8932dfeb6f29 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Thu, 6 Sep 2012 22:21:12 -0400 Subject: [PATCH] Disable the experimental orcus-based csv filter for now. Change-Id: Iba8b36aaa19bbf2a9cb632fb6fe586b27ae27a7a --- framework/source/loadenv/loadenv.cxx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/framework/source/loadenv/loadenv.cxx b/framework/source/loadenv/loadenv.cxx index a4c042a28869..1b6c35aef734 100644 --- a/framework/source/loadenv/loadenv.cxx +++ b/framework/source/loadenv/loadenv.cxx @@ -718,6 +718,13 @@ LoadEnv::EContentType LoadEnv::classifyContent(const ::rtl::OUString& namespace { +#if 1 +bool queryOrcusTypeAndFilter(const uno::Sequence&, OUString&, OUString&) +{ + return false; +} +#else +// TODO: We will reinstate this function later, so don't remove this! bool queryOrcusTypeAndFilter(const uno::Sequence& rDescriptor, OUString& rType, OUString& rFilter) { OUString aURL; @@ -745,6 +752,7 @@ bool queryOrcusTypeAndFilter(const uno::Sequence& rDescrip return false; } +#endif }