diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 12:34:27 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:24:38 +0100 |
commit | d18827e266d1bf44b0bac02ed486d2cdccba9c8a (patch) | |
tree | 5d66924a589db1189cb0802fea78ef2d3ccc5397 /sc | |
parent | f4aadeac07d3d2462ff4597d6bf4f7c3d605c95d (diff) |
Presumably "eType ==" is missing here
Change-Id: I7af8cabac09369a9be605413b799289d48cb3f57
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/dptabres.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/dptabres.cxx b/sc/source/core/data/dptabres.cxx index b3e0414b401e..d8504a59dc63 100644 --- a/sc/source/core/data/dptabres.cxx +++ b/sc/source/core/data/dptabres.cxx @@ -1383,7 +1383,7 @@ void ScDPResultMember::FillMemberResults( } ScDPItemData::Type eType = aItemData.GetType(); - bIsNumeric = eType == ScDPItemData::Value || ScDPItemData::GroupValue; + bIsNumeric = eType == ScDPItemData::Value || eType == ScDPItemData::GroupValue; } const ScDPDimension* pParentDim = GetParentDim(); |