summaryrefslogtreecommitdiffstats
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-06-25 07:18:21 +0300
committerTor Lillqvist <tml@iki.fi>2013-06-25 07:18:21 +0300
commitab86388c85f085adfe1edfe21a8ee8500a68449f (patch)
tree3432537a9f72bcc6aa4c9dc95dd8dee2346f072c /sc
parentWaE: implicit conversion of NULL constant to 'bool' (diff)
downloadcore-ab86388c85f085adfe1edfe21a8ee8500a68449f.tar.gz
core-ab86388c85f085adfe1edfe21a8ee8500a68449f.zip
WaE: private field 'mbDateTime' is not used
Change-Id: I29967aa15b879cc96cccb686814e594526b200d5
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column3.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/sc/source/core/data/column3.cxx b/sc/source/core/data/column3.cxx
index c85f914d8c51..1aae1e5ca0c1 100644
--- a/sc/source/core/data/column3.cxx
+++ b/sc/source/core/data/column3.cxx
@@ -502,7 +502,6 @@ class DeleteAreaHandler
sc::SingleColumnSpanSet maDeleteRanges;
bool mbNumeric:1;
- bool mbDateTime:1;
bool mbString:1;
bool mbFormula:1;
@@ -510,7 +509,6 @@ public:
DeleteAreaHandler(ScDocument& rDoc, sal_uInt16 nDelFlag) :
mrDoc(rDoc),
mbNumeric(nDelFlag & IDF_VALUE),
- mbDateTime(nDelFlag & IDF_DATETIME),
mbString(nDelFlag & IDF_STRING),
mbFormula(nDelFlag & IDF_FORMULA) {}