summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-09-06 22:21:12 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-09-07 09:10:40 -0400
commit8a0d4ff715738f30a368f58e787d8932dfeb6f29 (patch)
tree3d69bdd67f0e265471056d5dbe37b503ff2014ff /framework
parent0e895a59fc78332e8a2c2912e51d9a9f7812f513 (diff)
Disable the experimental orcus-based csv filter for now.
Change-Id: Iba8b36aaa19bbf2a9cb632fb6fe586b27ae27a7a
Diffstat (limited to 'framework')
-rw-r--r--framework/source/loadenv/loadenv.cxx8
1 files changed, 8 insertions, 0 deletions
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<beans::PropertyValue>&, OUString&, OUString&)
+{
+ return false;
+}
+#else
+// TODO: We will reinstate this function later, so don't remove this!
bool queryOrcusTypeAndFilter(const uno::Sequence<beans::PropertyValue>& rDescriptor, OUString& rType, OUString& rFilter)
{
OUString aURL;
@@ -745,6 +752,7 @@ bool queryOrcusTypeAndFilter(const uno::Sequence<beans::PropertyValue>& rDescrip
return false;
}
+#endif
}