summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/text
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedricbosdo@openoffice.org>2009-11-17 12:33:55 +0100
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2009-11-17 12:33:55 +0100
commitb426709527c3e3aaaae13616f6885c1c1a0202d6 (patch)
treece893b082dddbaa33775a42a92750e12277a8259 /offapi/com/sun/star/text
parent40ab64211cc89ec112e5baf8c7ff78ad4680b7a3 (diff)
cbosdo02: field patch to upstream applied
Diffstat (limited to 'offapi/com/sun/star/text')
-rw-r--r--offapi/com/sun/star/text/XFormField.idl13
1 files changed, 6 insertions, 7 deletions
diff --git a/offapi/com/sun/star/text/XFormField.idl b/offapi/com/sun/star/text/XFormField.idl
index f1f2d1bab9b9..735eb2c3e783 100644
--- a/offapi/com/sun/star/text/XFormField.idl
+++ b/offapi/com/sun/star/text/XFormField.idl
@@ -11,14 +11,13 @@
*/
interface XFormField: com::sun::star::uno::XInterface
{
- short getType();
- short getRes();
- string getDescription( );
-
- void setType([in] short fieldType );
- void setRes([in] short res );
- void setDescription([in] string description );
+ string getFieldType();
+ void setFieldType([in] string fieldType);
+ short getParamCount();
+ string getParamName([in] short i);
+ string getParamValue([in] short i);
+ void addParam([in] string name, [in] string value, [in] boolean replaceExisting);
};
}; }; }; };