summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-05-10 20:31:36 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-05-11 01:54:40 -0400
commit17b900c657cac6a510ed63e0ff8eb74a33dcc8db (patch)
treede4a7b0e271d0773e119a2856a74f3a085883a17 /offapi
parent328be2536f5911dabb2ae504dc2f4fc348fc994e (diff)
Added UNSPECIFIED to textfield::Type.
Change-Id: I28fbab54ba71f01b989a47ab357583113e85fccb
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/text/textfield/Type.idl11
1 files changed, 7 insertions, 4 deletions
diff --git a/offapi/com/sun/star/text/textfield/Type.idl b/offapi/com/sun/star/text/textfield/Type.idl
index fe99a912d569..29f8c4d80e3c 100644
--- a/offapi/com/sun/star/text/textfield/Type.idl
+++ b/offapi/com/sun/star/text/textfield/Type.idl
@@ -43,6 +43,8 @@ module com { module sun { module star { module text { module textfield {
*/
constants Type
{
+ const long UNSPECIFIED = -1;
+
const long DATE = 0;
const long URL = 1;
const long PAGE = 2;
@@ -54,10 +56,11 @@ constants Type
const long EXTENDED_FILE = 8;
const long AUTHOR = 9;
const long MEASURE = 10;
- const long EXTENDED_DATE = 11;
- const long HEADER = 12;
- const long FOOTER = 13;
- const long DATE_TIME = 14;
+ const long HEADER = 11;
+ const long FOOTER = 12;
+ const long DATE_TIME = 13;
+
+ const long EXTENDED_DATE = 14;
};
}; }; }; }; };