diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-03-23 16:26:33 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-03-23 22:27:41 -0400 |
commit | 7463dafd92a5153f4c67d1a6d91199d97a3aead1 (patch) | |
tree | 308ec22e05f78e1f60427f589a2d92fba793dbae /sc/inc/dptabres.hxx | |
parent | de8276412182eef061680360fab109f1acab0ab4 (diff) |
A little clean up.
Diffstat (limited to 'sc/inc/dptabres.hxx')
-rw-r--r-- | sc/inc/dptabres.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/inc/dptabres.hxx b/sc/inc/dptabres.hxx index 36ed4aceec5f..3a64f6d50012 100644 --- a/sc/inc/dptabres.hxx +++ b/sc/inc/dptabres.hxx @@ -506,15 +506,15 @@ private: const ScDPResultData* pResultData; MemberArray maMemberArray; MemberHash maMemberHash; - sal_Bool bInitialized; - String aDimensionName; //! or ptr to IntDimension? - sal_Bool bIsDataLayout; //! or ptr to IntDimension? - sal_Bool bSortByData; - sal_Bool bSortAscending; + rtl::OUString aDimensionName; //! or ptr to IntDimension? long nSortMeasure; ScMemberSortOrder aMemberOrder; // used when sorted by measure - sal_Bool bAutoShow; - sal_Bool bAutoTopItems; + bool bIsDataLayout:1; //! or ptr to IntDimension? + bool bSortByData:1; + bool bSortAscending:1; + bool bAutoShow:1; + bool bAutoTopItems:1; + bool bInitialized:1; long nAutoMeasure; long nAutoCount; |