diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-03-02 16:52:14 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-03-09 11:13:28 -0500 |
commit | 246521c9578e3cb66e610850716ba72f1e9981bc (patch) | |
tree | 8ce6cba13a105c6732f6e3284577e31ee809dc63 /sc/inc/dputil.hxx | |
parent | 98b4beebce3720c55ff3302a43d482db8adbc6fe (diff) |
Massive rework to reduce the size of ScDPItemData.
Currently lots of things are broken.
Diffstat (limited to 'sc/inc/dputil.hxx')
-rw-r--r-- | sc/inc/dputil.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/dputil.hxx b/sc/inc/dputil.hxx index cf574c1e056e..0dfab31ee8aa 100644 --- a/sc/inc/dputil.hxx +++ b/sc/inc/dputil.hxx @@ -32,6 +32,8 @@ #include "rtl/ustring.hxx" #include "scdllapi.h" +class SvNumberFormatter; + class ScDPUtil { public: @@ -40,6 +42,9 @@ public: SC_DLLPUBLIC static rtl::OUString getSourceDimensionName(const rtl::OUString& rName); static rtl::OUString createDuplicateDimensionName(const rtl::OUString& rOriginal, size_t nDupCount); + + static rtl::OUString getDateGroupName( + sal_Int32 nDatePart, sal_Int32 nValue, SvNumberFormatter* pFormatter); }; #endif |