summaryrefslogtreecommitdiff
path: root/sc/inc/conditio.hxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-03-23 08:34:13 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-03-23 08:38:17 +0100
commit9513e13686f011b008764b3c5f184be47b9f4f5f (patch)
treef496f6b6c59b50103387beae9318d8b073bc3bbe /sc/inc/conditio.hxx
parentfb81adcda850b7456dbc274a37a2f12237c6ab82 (diff)
fix above/below equal average ods import/export
Change-Id: I1c305c67772b46cede6b4da3e79578f2f1a8ee89
Diffstat (limited to 'sc/inc/conditio.hxx')
-rw-r--r--sc/inc/conditio.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sc/inc/conditio.hxx b/sc/inc/conditio.hxx
index dba96735c43d..d5a55e3fd29a 100644
--- a/sc/inc/conditio.hxx
+++ b/sc/inc/conditio.hxx
@@ -62,6 +62,8 @@ enum ScConditionMode
SC_COND_BOTTOM_PERCENT,
SC_COND_ABOVE_AVERAGE,
SC_COND_BELOW_AVERAGE,
+ SC_COND_ABOVE_EQUAL_AVERAGE,
+ SC_COND_BELOW_EQUAL_AVERAGE,
SC_COND_ERROR,
SC_COND_NOERROR,
SC_COND_BEGINS_WITH,
@@ -244,8 +246,8 @@ private:
bool IsTopNPercent( double nArg ) const;
bool IsBottomNElement( double nArg ) const;
bool IsBottomNPercent( double nArg ) const;
- bool IsAboveAverage( double nArg ) const;
- bool IsBelowAverage( double nArg ) const;
+ bool IsAboveAverage( double nArg, bool bEqual ) const;
+ bool IsBelowAverage( double nArg, bool bEqual ) const;
bool IsError( const ScAddress& rPos ) const;