summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorNoel Power <noel.power@suse.com>2013-05-03 14:21:10 +0100
committerNoel Power <noel.power@suse.com>2013-05-09 14:11:20 +0100
commit2f3359dbe86ad5b64b1c8e5c41b2fec3be9242a5 (patch)
treefc7cba5b4ea012217eb6fff2e98230f9f160b017 /oovbaapi
parent7e735236e93754078dffa0c5c85316be87a5ce9f (diff)
fix memory leak with orphaned controls created on the fly
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/ooo/vba/XVBAToOOEventDescGen.idl2
1 files changed, 1 insertions, 1 deletions
diff --git a/oovbaapi/ooo/vba/XVBAToOOEventDescGen.idl b/oovbaapi/ooo/vba/XVBAToOOEventDescGen.idl
index 5dd6dbbeb5f1..dd925533cf80 100644
--- a/oovbaapi/ooo/vba/XVBAToOOEventDescGen.idl
+++ b/oovbaapi/ooo/vba/XVBAToOOEventDescGen.idl
@@ -24,7 +24,7 @@
module ooo { module vba {
interface XVBAToOOEventDescGen : com::sun::star::uno::XInterface
{
- sequence< com::sun::star::script::ScriptEventDescriptor > getEventDescriptions( [in] com::sun::star::uno::XInterface xControl, [in] string sCodeName );
+ sequence< com::sun::star::script::ScriptEventDescriptor > getEventDescriptions( [in] string controlServiceName, [in] string sCodeName );
com::sun::star::script::XScriptEventsSupplier getEventSupplier( [in] com::sun::star::uno::XInterface xControl, [in] string sCodeName );
};