summaryrefslogtreecommitdiffstats
path: root/sc/inc/dptabdat.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-02-13 17:36:17 -0500
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-02-13 18:03:09 -0500
commit0d22c49de2633ba540c00038633c60af172cc516 (patch)
treeb77d9953557f43624fdb131e3779dafc76f28d04 /sc/inc/dptabdat.hxx
parentdont echo ./g -z every time make is run (diff)
downloadcore-0d22c49de2633ba540c00038633c60af172cc516.tar.gz
core-0d22c49de2633ba540c00038633c60af172cc516.zip
Switch integer constants to enum & prefix data members with 'm'.
Change-Id: I13374e160bb369f64fc6e661c43db5da657cbfd9
Diffstat (limited to 'sc/inc/dptabdat.hxx')
-rw-r--r--sc/inc/dptabdat.hxx18
1 files changed, 0 insertions, 18 deletions
diff --git a/sc/inc/dptabdat.hxx b/sc/inc/dptabdat.hxx
index 6742f58e41f0..7c6dd33efbec 100644
--- a/sc/inc/dptabdat.hxx
+++ b/sc/inc/dptabdat.hxx
@@ -54,24 +54,6 @@ namespace com { namespace sun { namespace star { namespace sheet {
#define SC_DAPI_LEVEL_WEEK 4
#define SC_DAPI_LEVEL_WEEKDAY 5
-
-//
-// base class ScDPTableData to allow implementation with tabular data
-// by deriving only of this
-//
-#define SC_VALTYPE_EMPTY 0
-#define SC_VALTYPE_VALUE 1
-#define SC_VALTYPE_STRING 2
-#define SC_VALTYPE_ERROR 3
-
-struct ScDPValueData
-{
- double fValue;
- sal_uInt8 nType;
-
- void Set( double fV, sal_uInt8 nT ) { fValue = fV; nType = nT; }
-};
-
class ScDPResultMember;
class ScDPDimension;
class ScDPLevel;