diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2016-11-12 18:58:17 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2016-11-12 21:36:25 -0500 |
commit | e8ccf9a2e37ea69fd92974125f824c70af4ef304 (patch) | |
tree | 35ed8f0bd5568a1193c78a1972a7b1270d71155a /sc/inc/dpsdbtab.hxx | |
parent | 73e21792efb36209b6ca8c14377e40756f9173b0 (diff) |
Let's hook up the pivot table dumper code to Ctrl-Shift-F8 as well.
It dumps the pivot data if the cursor is over a pivot table output,
else it dumps the column storage info.
Change-Id: I403e381be3f64d139f8bfaca7e477742a65dde9c
Diffstat (limited to 'sc/inc/dpsdbtab.hxx')
-rw-r--r-- | sc/inc/dpsdbtab.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/inc/dpsdbtab.hxx b/sc/inc/dpsdbtab.hxx index a01053feaf71..2b6e6c37744a 100644 --- a/sc/inc/dpsdbtab.hxx +++ b/sc/inc/dpsdbtab.hxx @@ -77,6 +77,10 @@ public: virtual void CalcResults(CalcInfo& rInfo, bool bAutoShow) override; virtual const ScDPFilteredCache& GetCacheTable() const override; virtual void ReloadCacheTable() override; + +#if DUMP_PIVOT_TABLE + virtual void Dump() const override; +#endif }; #endif |