diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-06-25 07:18:21 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-06-25 07:18:21 +0300 |
commit | ab86388c85f085adfe1edfe21a8ee8500a68449f (patch) | |
tree | 3432537a9f72bcc6aa4c9dc95dd8dee2346f072c /sc | |
parent | a31cea1be6bcad3d823ebecd7456ecb76368ed10 (diff) |
WaE: private field 'mbDateTime' is not used
Change-Id: I29967aa15b879cc96cccb686814e594526b200d5
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/column3.cxx | 2 |
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) {} |