summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-04-16 21:00:42 +0300
committerTor Lillqvist <tml@collabora.com>2018-05-31 21:50:38 +0300
commitb9d657a041069c36d65dff30657aacc3e6a9e6b7 (patch)
tree5806e7854fed5546988c55b14f7c1f1a0559d4df /oovbaapi
parent2ea6e4c00c1d3c5e020935c4fa2eca3ff3ee13e6 (diff)
Can simplify, our IDL compiler is more clever nowadays
Change-Id: I785c115ab7bcb7cfddc8e79bd5d31278f0c544dc (cherry picked from commit a5a8346cca567b7657fd144c4f0ad7f2113c5dae)
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/ooo/vba/word/XApplication.idl11
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;