diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-04-16 21:00:42 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-05-31 14:23:55 +0300 |
commit | a5a8346cca567b7657fd144c4f0ad7f2113c5dae (patch) | |
tree | 43a124109d69a690ed09cd98027651f11bd6a3bf /oovbaapi | |
parent | 91fd5449c6f3f2c2114992da7def915a9f90a580 (diff) |
Can simplify, our IDL compiler is more clever nowadays
Change-Id: I785c115ab7bcb7cfddc8e79bd5d31278f0c544dc
Diffstat (limited to 'oovbaapi')
-rw-r--r-- | oovbaapi/ooo/vba/word/XApplication.idl | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/oovbaapi/ooo/vba/word/XApplication.idl b/oovbaapi/ooo/vba/word/XApplication.idl index de6fafc085a7..a0ad911370a9 100644 --- a/oovbaapi/ooo/vba/word/XApplication.idl +++ b/oovbaapi/ooo/vba/word/XApplication.idl @@ -24,19 +24,14 @@ module ooo { module vba { module word { -interface XDocument; -interface XWindow; -interface XSystem; -interface XOptions; -interface XSelection; interface XApplication : XConnectable { [attribute, readonly] XDocument ActiveDocument; [attribute, readonly] XWindow ActiveWindow; [attribute, readonly] string Name; - [attribute, readonly] ooo::vba::word::XSystem System; - [attribute, readonly] ooo::vba::word::XOptions Options; - [attribute, readonly] ooo::vba::word::XSelection Selection; + [attribute, readonly] XSystem System; + [attribute, readonly] XOptions Options; + [attribute, readonly] XSelection Selection; [attribute] boolean DisplayAutoCompleteTips; [attribute] long EnableCancelKey; |