diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-02 13:42:16 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-02 14:00:41 +0100 |
commit | 8918dabbeed24d68a746309165e6c09a09b7b2f3 (patch) | |
tree | e83bb94cb71b78b872cb1360c7ddea775bf1bb5a /include | |
parent | d528eb158cce3c44cd976a0d5a65b7f0c012672c (diff) |
coverity#705359 Mixing enum types
and
coverity#705361 Mixing enum types
coverity#705362 Mixing enum types
Change-Id: I557d7178277e5d497e3bbab12b75724c05653f57
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/chrtitem.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/svx/chrtitem.hxx b/include/svx/chrtitem.hxx index 63c57d6cffb3..750985b35e1b 100644 --- a/include/svx/chrtitem.hxx +++ b/include/svx/chrtitem.hxx @@ -157,11 +157,12 @@ enum SvxChartRegress CHREGRESS_EXP, CHREGRESS_POWER, CHREGRESS_POLYNOMIAL, - CHREGRESS_MOVING_AVERAGE + CHREGRESS_MOVING_AVERAGE, + CHREGRESS_MEAN_VALUE, + CHREGRESS_UNKNOWN }; -#define CHREGRESS_COUNT (CHREGRESS_MOVING_AVERAGE + 1) - +#define CHREGRESS_COUNT (CHREGRESS_UNKNOWN + 1) class SVX_DLLPUBLIC SvxChartStyleItem : public SfxEnumItem |