diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-12-18 12:57:35 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-12-19 23:39:04 -0500 |
commit | 8c8402061bb3908d195e3d1b462409d8bcc8e279 (patch) | |
tree | 63678defc605b8759ef957d560500dd8a7e1c36c /sc/inc/pivot.hxx | |
parent | 0de82fe25545a58e956addc5de81891852e9e5de (diff) |
Refactored pivot table dialog code for better modularity.
Moved much of the field area specific storage from the parent dialog
to its child field area control. It's much cleaner this way.
Change-Id: I603fbebc2d9d62742a3808d6f72ca23357d84046
Diffstat (limited to 'sc/inc/pivot.hxx')
-rw-r--r-- | sc/inc/pivot.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/pivot.hxx b/sc/inc/pivot.hxx index 1c4350b364d4..ba877412cdbb 100644 --- a/sc/inc/pivot.hxx +++ b/sc/inc/pivot.hxx @@ -40,6 +40,7 @@ #include "global.hxx" #include "address.hxx" #include "dpglobal.hxx" +#include "dpmacros.hxx" #include <vector> #include <boost/ptr_container/ptr_vector.hpp> @@ -164,6 +165,10 @@ struct ScPivotFuncData const ::com::sun::star::sheet::DataPilotFieldReference& rFieldRef ); bool operator== (const ScPivotFuncData& r) const; + +#if DEBUG_PIVOT_TABLE + void Dump() const; +#endif }; typedef ::std::vector< ScPivotFuncData > ScPivotFuncDataVector; |