summaryrefslogtreecommitdiff
path: root/offapi/org/libreoffice
diff options
context:
space:
mode:
authorStephan Bergmann <stephan.bergmann@allotropia.de>2024-07-30 11:08:48 +0200
committerStephan Bergmann <stephan.bergmann@allotropia.de>2024-07-30 14:15:58 +0200
commit0bf2e317ac34512b348dcf0e7d9a8c10a47d6aef (patch)
treecb748025ad5fd3eed9fe69360a587d4806a37aa4 /offapi/org/libreoffice
parent3371a9b36fb455501449d6575250ff19e5ffa18b (diff)
More exhaustive org.libreoffice.embindtest.Struct
Change-Id: I91085ef8cd7cd80852c0d0ab4f87fd3226a10a00 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171236 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'offapi/org/libreoffice')
-rw-r--r--offapi/org/libreoffice/embindtest/Struct.idl23
1 files changed, 19 insertions, 4 deletions
diff --git a/offapi/org/libreoffice/embindtest/Struct.idl b/offapi/org/libreoffice/embindtest/Struct.idl
index b62d917256c6..a24f53374e65 100644
--- a/offapi/org/libreoffice/embindtest/Struct.idl
+++ b/offapi/org/libreoffice/embindtest/Struct.idl
@@ -10,10 +10,25 @@
module org { module libreoffice { module embindtest {
struct Struct {
- long m1;
- double m2;
- string m3;
- any m4;
+ boolean m1;
+ byte m2;
+ short m3;
+ unsigned short m4;
+ long m5;
+ unsigned long m6;
+ hyper m7;
+ unsigned hyper m8;
+ float m9;
+ double m10;
+ char m11;
+ string m12;
+ type m13;
+ any m14;
+ sequence<string> m15;
+ Enum m16;
+ StructLong m17;
+ Template<any, StructString> m18;
+ com::sun::star::uno::XInterface m19;
};
}; }; };