diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2015-03-26 23:12:10 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2015-03-30 04:34:18 +0200 |
commit | a017e073f033f669de79bb7fc7dc1268ff236dd8 (patch) | |
tree | 08aae8635a2f8386ea3b04991ed2376f3db494f8 /offapi/com/sun/star/sheet | |
parent | 31cf3baa7985cc98339a83ecd22aa7fe5fbc7916 (diff) |
add missing enum values
Change-Id: I3234fb21e3f62068e39b6667e9c77e857536ade4
Diffstat (limited to 'offapi/com/sun/star/sheet')
-rw-r--r-- | offapi/com/sun/star/sheet/ConditionFormatOperator.idl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/offapi/com/sun/star/sheet/ConditionFormatOperator.idl b/offapi/com/sun/star/sheet/ConditionFormatOperator.idl index 187fde36dfd4..68ac0e279185 100644 --- a/offapi/com/sun/star/sheet/ConditionFormatOperator.idl +++ b/offapi/com/sun/star/sheet/ConditionFormatOperator.idl @@ -54,11 +54,15 @@ constants ConditionFormatOperator const long NO_ERROR = 19; - const long CONTAINS = 20; + const long BEGINS_WITH = 20; - const long NOT_CONTAINS = 21; + const long ENDS_WITH = 21; - const long EXPRESSION = 22; + const long CONTAINS = 22; + + const long NOT_CONTAINS = 23; + + const long EXPRESSION = 24; }; |