summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-05-14 09:12:06 +0200
committerNoel Grandin <noel@peralex.com>2013-05-14 09:12:06 +0200
commit3abe867790a1a896e30e9887546aef8b9e651b53 (patch)
tree04908a5973ce7b7ea89b527d195a0f5c77844bfe /offapi
parent4460f213df777f569fa2a2091885c29c7653637f (diff)
fdo#46808, fix call to sdb::tools::ConnectionTools
In my previous conversion to new style I forgot to pass arguments into the service constructor. Change-Id: Ibbf750315b3e62869b1eb4c520808327002f2dcc
Diffstat (limited to 'offapi')
-rw-r--r--offapi/com/sun/star/sdb/tools/ConnectionTools.idl9
1 files changed, 8 insertions, 1 deletions
diff --git a/offapi/com/sun/star/sdb/tools/ConnectionTools.idl b/offapi/com/sun/star/sdb/tools/ConnectionTools.idl
index 741a469649c6..3fc03a133752 100644
--- a/offapi/com/sun/star/sdb/tools/ConnectionTools.idl
+++ b/offapi/com/sun/star/sdb/tools/ConnectionTools.idl
@@ -22,12 +22,19 @@
#include <com/sun/star/sdb/tools/XConnectionTools.idl>
+module com { module sun { module star { module sdbc {
+ published interface XConnection;
+};};};};
+
module com { module sun { module star { module sdb { module tools {
/**
@since LibreOffice 4.1
*/
-service ConnectionTools : XConnectionTools;
+service ConnectionTools : XConnectionTools
+{
+ createWithConnection([in] com::sun::star::sdbc::XConnection Connection);
+};
}; }; }; }; };