summaryrefslogtreecommitdiff
path: root/sc/inc/pivot.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-17 23:37:45 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-22 14:02:05 -0500
commit057d4db997796fa47f71c31b3bcda892c97d65c7 (patch)
tree19defcabedfd982011e14dfadb2408250bd229a3 /sc/inc/pivot.hxx
parentb6ddd7008b4a7331d6dd1d7fdfcc342c41fbd06a (diff)
Properly transfer layout and subtotal names before and after the dialog.
Diffstat (limited to 'sc/inc/pivot.hxx')
-rw-r--r--sc/inc/pivot.hxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/sc/inc/pivot.hxx b/sc/inc/pivot.hxx
index c346aefcc00b..f97c47536a2b 100644
--- a/sc/inc/pivot.hxx
+++ b/sc/inc/pivot.hxx
@@ -128,15 +128,17 @@ struct ScDPName
struct ScDPLabelData
{
- ::rtl::OUString maName; /// Original name of the dimension.
- ::rtl::OUString maLayoutName; /// Layout name (display name)
+ rtl::OUString maName; /// Original name of the dimension.
+ rtl::OUString maLayoutName; /// Layout name (display name)
+ rtl::OUString maSubtotalName;
SCCOL mnCol; /// 0-based field index (not the source column index)
long mnOriginalDim; /// original dimension index (>= 0 for duplicated dimension)
sal_uInt16 mnFuncMask; /// Page/Column/Row subtotal function.
sal_Int32 mnUsedHier; /// Used hierarchy.
sal_Int32 mnFlags; /// Flags from the DataPilotSource dimension
- bool mbShowAll; /// true = Show all (also empty) results.
- bool mbIsValue; /// true = Sum or count in data field.
+ bool mbShowAll:1; /// true = Show all (also empty) results.
+ bool mbIsValue:1; /// true = Sum or count in data field.
+ bool mbDataLayout:1;
struct Member
{