summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-08-18 07:51:05 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-08-27 17:39:11 +0200
commit7f635c41da112fbef85f22cad929a327f6223804 (patch)
tree7fe387db7e384dbef73e3873f4518e96e2280c62
parent9293d02c779d27815f2f0e650757d5a6be81b222 (diff)
add ScOrcusSheet::get_table method
Change-Id: I2369e29e96cf33dbe263b090dee0d1100ecce8de
-rw-r--r--sc/source/filter/inc/orcusinterface.hxx1
-rw-r--r--sc/source/filter/orcus/interface.cxx5
2 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/filter/inc/orcusinterface.hxx b/sc/source/filter/inc/orcusinterface.hxx
index 633b43d17d3a..8677bbf9e5cd 100644
--- a/sc/source/filter/inc/orcusinterface.hxx
+++ b/sc/source/filter/inc/orcusinterface.hxx
@@ -113,6 +113,7 @@ public:
ScOrcusSheet(ScDocumentImport& rDoc, SCTAB nTab, ScOrcusFactory& rFactory);
virtual orcus::spreadsheet::iface::import_auto_filter* get_auto_filter() SAL_OVERRIDE { return &maAutoFilter; }
+ virtual orcus::spreadsheet::iface::import_table* get_table() SAL_OVERRIDE;
// Orcus import interface
virtual void set_auto(orcus::spreadsheet::row_t row, orcus::spreadsheet::col_t col, const char* p, size_t n) SAL_OVERRIDE;
diff --git a/sc/source/filter/orcus/interface.cxx b/sc/source/filter/orcus/interface.cxx
index d897143a91c9..a8e3f67a4b1c 100644
--- a/sc/source/filter/orcus/interface.cxx
+++ b/sc/source/filter/orcus/interface.cxx
@@ -214,6 +214,11 @@ void ScOrcusSheet::cellInserted()
}
}
+os::iface::import_table* ScOrcusSheet::get_table()
+{
+ return NULL;
+}
+
void ScOrcusSheet::set_auto(os::row_t row, os::col_t col, const char* p, size_t n)
{
OUString aVal(p, n, RTL_TEXTENCODING_UTF8);