summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-01-18 09:18:17 +0200
committerNoel Grandin <noel@peralex.com>2013-02-11 08:02:12 +0200
commitbed621572c397c7a2c6dac934801c947e45c83da (patch)
treef59fd8c762704d09138f906f21943971c3421d80 /offapi
parente5fdaec54a54e42b487c37e6b01493bcdfc30b4c (diff)
fdo#46808, Use service constructor for awt::DialogProvider
Change-Id: I5d0a3e66afeadafa6d53ff0a255d036b7e3d528d
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/awt/DialogProvider.idl13
1 files changed, 6 insertions, 7 deletions
diff --git a/offapi/com/sun/star/awt/DialogProvider.idl b/offapi/com/sun/star/awt/DialogProvider.idl
index 764519b94dce..9a578e117453 100644
--- a/offapi/com/sun/star/awt/DialogProvider.idl
+++ b/offapi/com/sun/star/awt/DialogProvider.idl
@@ -20,22 +20,21 @@
#ifndef __com_sun_star_awt_DialogProvider_idl__
#define __com_sun_star_awt_DialogProvider_idl__
-#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/awt/XDialogProvider.idl>
+#include <com/sun/star/frame/XModel.idl>
module com { module sun { module star { module awt {
-/** specifies a provider for dialogs implementing the
+/** Sspecifies a provider for dialogs implementing the
<type scope="com::sun::star::awt">XDialog</type> interface.
*/
-service DialogProvider : com::sun::star::awt::XDialogProvider;
-
-// service DialogProvider {
- // interface com::sun::star::awt::XDialogProvider;
-// };
+service DialogProvider : com::sun::star::awt::XDialogProvider
+{
+ createWithModel([in] com::sun::star::frame::XModel Model);
+};
}; }; }; };