diff options
author | Noel Grandin <noel@peralex.com> | 2013-05-14 11:58:43 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-05-14 13:39:29 +0200 |
commit | c75a46fbd0ba4daf857fcd7d70badeed5aae8e28 (patch) | |
tree | 95d3e2945b6b7adbdd9bc5b31fc0d555c3ca818f /offapi | |
parent | 8bf8a2f3493273cb408ef86c5d971e18fa8fc40b (diff) |
fdo#46808, use DialogProvider service constructor
Change-Id: I1652be5cefd00892426cf8559cadc9605ad8d439
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/awt/DialogProvider.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/offapi/com/sun/star/awt/DialogProvider.idl b/offapi/com/sun/star/awt/DialogProvider.idl index 9a578e117453..e259ad7e916c 100644 --- a/offapi/com/sun/star/awt/DialogProvider.idl +++ b/offapi/com/sun/star/awt/DialogProvider.idl @@ -22,6 +22,8 @@ #include <com/sun/star/awt/XDialogProvider.idl> #include <com/sun/star/frame/XModel.idl> +#include <com/sun/star/io/XInputStream.idl> +#include <com/sun/star/script/XScriptListener.idl> @@ -33,7 +35,13 @@ module com { module sun { module star { module awt { */ service DialogProvider : com::sun::star::awt::XDialogProvider { + createWithModel([in] com::sun::star::frame::XModel Model); + + createWithModelAndListener([in] com::sun::star::frame::XModel Model, + [in] com::sun::star::io::XInputStream InStream, + [in] any DialogLib, + [in] com::sun::star::script::XScriptListener ScriptListener); }; |