summaryrefslogtreecommitdiffstats
path: root/sc/inc/dpglobal.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-02-13 17:40:27 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-02-13 18:03:09 -0500
commit623253418b3fc18a8122ea1f71e86628208000ff (patch)
tree159828311c3699736c6678938a3bffa733abd08d /sc/inc/dpglobal.hxx
parentSwitch integer constants to enum & prefix data members with 'm'. (diff)
downloadcore-623253418b3fc18a8122ea1f71e86628208000ff.tar.gz
core-623253418b3fc18a8122ea1f71e86628208000ff.zip
ScDPValueData->ScDPValue. The last 'Data' sounds very redundant.
Change-Id: I218315a0583ce6b0f10969b364a7a717ad309212
Diffstat (limited to 'sc/inc/dpglobal.hxx')
-rw-r--r--sc/inc/dpglobal.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/dpglobal.hxx b/sc/inc/dpglobal.hxx
index 6fffc643ba3a..74250a649599 100644
--- a/sc/inc/dpglobal.hxx
+++ b/sc/inc/dpglobal.hxx
@@ -35,14 +35,14 @@
#define PIVOT_FUNC_STD_VARP 0x0400
#define PIVOT_FUNC_AUTO 0x1000
-struct ScDPValueData
+struct ScDPValue
{
enum Type { Empty = 0, Value, String, Error };
double mfValue;
Type meType;
- ScDPValueData();
+ ScDPValue();
void Set( double fV, Type eT );
};