summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2015-03-30 00:58:43 +0200
committerJan Holesovsky <kendy@collabora.com>2015-04-09 11:39:31 +0200
commit498823d95c393447ab52b8096a86488fc13358f4 (patch)
treea71d4cd76942fb280cc8d25253515e4b8128f9dc
parentwork on initial colorscale properties tests (diff)
downloadcore-498823d95c393447ab52b8096a86488fc13358f4.tar.gz
core-498823d95c393447ab52b8096a86488fc13358f4.zip
add value for first entry
Change-Id: Ifc53952ba0aaa8b5e59944e309428bfce4d48ef7
-rw-r--r--offapi/com/sun/star/sheet/IconSetFormatEntry.idl13
1 files changed, 9 insertions, 4 deletions
diff --git a/offapi/com/sun/star/sheet/IconSetFormatEntry.idl b/offapi/com/sun/star/sheet/IconSetFormatEntry.idl
index 24715e36c58b..652618cd4abc 100644
--- a/offapi/com/sun/star/sheet/IconSetFormatEntry.idl
+++ b/offapi/com/sun/star/sheet/IconSetFormatEntry.idl
@@ -14,13 +14,18 @@ module com { module sun { module star { module sheet {
constants IconSetFormatEntry
{
- const long ICONSET_PERCENTILE = 0;
+ /**
+ * Can not be set! Will always be the type of the first entry.
+ */
+ const long ICONSET_MIN = 0;
- const long ICONSET_VALUE = 1;
+ const long ICONSET_PERCENTILE = 1;
- const long ICONSET_PERCENT = 2;
+ const long ICONSET_VALUE = 2;
- const long ICONSET_FORMULA = 3;
+ const long ICONSET_PERCENT = 3;
+
+ const long ICONSET_FORMULA = 4;
};