summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpgroup.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-28 16:11:53 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-28 21:03:09 -0500
commit6fc139f068de791604157b70d331ebb171fc1049 (patch)
tree34fa937468a8e4ae5277cb6d4c5a9abb6454caaf /sc/inc/dpgroup.hxx
parentFix indentation. (diff)
downloadcore-6fc139f068de791604157b70d331ebb171fc1049.tar.gz
core-6fc139f068de791604157b70d331ebb171fc1049.zip
Properly prefixed members of ScDPNumGroupInfo.
Diffstat (limited to 'sc/inc/dpgroup.hxx')
-rw-r--r--sc/inc/dpgroup.hxx20
1 files changed, 9 insertions, 11 deletions
diff --git a/sc/inc/dpgroup.hxx b/sc/inc/dpgroup.hxx
index 356df1ca028e..f6be836c8567 100644
--- a/sc/inc/dpgroup.hxx
+++ b/sc/inc/dpgroup.hxx
@@ -40,19 +40,17 @@
class ScDocument;
class SvNumberFormatter;
-//! API struct?
struct ScDPNumGroupInfo
{
- sal_Bool Enable;
- sal_Bool DateValues;
- sal_Bool AutoStart;
- sal_Bool AutoEnd;
- double Start;
- double End;
- double Step;
-
- ScDPNumGroupInfo() : Enable(false), DateValues(false), AutoStart(false), AutoEnd(false),
- Start(0.0), End(0.0), Step(0.0) {}
+ bool mbEnable:1;
+ bool mbDateValues:1;
+ bool mbAutoStart:1;
+ bool mbAutoEnd:1;
+ double mfStart;
+ double mfEnd;
+ double mfStep;
+
+ SC_DLLPUBLIC ScDPNumGroupInfo();
};
// ScDPDateGroupHelper is used as part of ScDPGroupDimension (additional dim.)