From ea71a05840f53158f669182c6e93de9f8348bbe5 Mon Sep 17 00:00:00 2001
From: Michael Stahl
Date: Sat, 27 Apr 2013 22:45:02 +0200
Subject: *api: convert bar
sed -i 's,\([^<]*::[a-z][^<:]\+[^)]\),\1::\2(),g'
Change-Id: I265ff28fee73a271f205294e59955b3a1c81d95a
---
udkapi/com/sun/star/lang/MultiServiceFactory.idl | 2 +-
udkapi/com/sun/star/lang/ServiceManager.idl | 4 ++--
udkapi/com/sun/star/lang/XComponent.idl | 2 +-
udkapi/com/sun/star/lang/XConnectionPoint.idl | 4 ++--
4 files changed, 6 insertions(+), 6 deletions(-)
(limited to 'udkapi/com/sun/star/lang')
diff --git a/udkapi/com/sun/star/lang/MultiServiceFactory.idl b/udkapi/com/sun/star/lang/MultiServiceFactory.idl
index ea8cb01fcb83..24e4fd4cc443 100644
--- a/udkapi/com/sun/star/lang/MultiServiceFactory.idl
+++ b/udkapi/com/sun/star/lang/MultiServiceFactory.idl
@@ -38,7 +38,7 @@ module com { module sun { module star { module lang {
interface can be supported optionally.
If it is suported, it is possible to enumerate all implementations that
support the service specified with the argument of
- XContentEnumerationAccess::createContentEnumeration.
+ com::sun::star::container::XContentEnumerationAccess::createContentEnumeration().
The enumerator returns interfaces. The type of the interface is not specified.
Commonly this is XSingleComponentFactory.
*/
diff --git a/udkapi/com/sun/star/lang/ServiceManager.idl b/udkapi/com/sun/star/lang/ServiceManager.idl
index bc801257df87..24f3559adf46 100644
--- a/udkapi/com/sun/star/lang/ServiceManager.idl
+++ b/udkapi/com/sun/star/lang/ServiceManager.idl
@@ -60,7 +60,7 @@ module com { module sun { module star { module lang {
XComponent (optional)
The service manager calls the method
- XComponent::dispose
+ com::sun::star::lang::XComponent::dispose()
on the factory when going down (i.e. it is commonly disposed by the component context).
@@ -103,7 +103,7 @@ published service ServiceManager
It is possible to enumerate all implementations that support the
service specified with the argument of the
- XContentEnumerationAccess::createContentEnumeration method.
+ com::sun::star::container::XContentEnumerationAccess::createContentEnumeration() method.
The enumerator commonly returns XSingleComponentFactory
interfaces.
diff --git a/udkapi/com/sun/star/lang/XComponent.idl b/udkapi/com/sun/star/lang/XComponent.idl
index 31c7549b4b1a..7423937bb360 100644
--- a/udkapi/com/sun/star/lang/XComponent.idl
+++ b/udkapi/com/sun/star/lang/XComponent.idl
@@ -85,7 +85,7 @@ published interface XComponent: com::sun::star::uno::XInterface
XComponent::addEventListener is called, the call will not fail
with a com::sun::star::lang::DisposedException, but
the caller will be notified via the
- XEventListener::disposing
+ com::sun::star::lang::XEventListener::disposing()
callback. This callback can occur synchronously within the
XComponent::addEventListener
call.
diff --git a/udkapi/com/sun/star/lang/XConnectionPoint.idl b/udkapi/com/sun/star/lang/XConnectionPoint.idl
index cb052e45a24d..8848371130d8 100644
--- a/udkapi/com/sun/star/lang/XConnectionPoint.idl
+++ b/udkapi/com/sun/star/lang/XConnectionPoint.idl
@@ -118,7 +118,7 @@ published interface XConnectionPoint: com::sun::star::uno::XInterface
A few add...Listener
methods need additional parameters
to add listeners or throw exceptions. One of these methods is
- XPropertySet::addPropertyChangeListener.
+ com::sun::star::beans::XPropertySet::addPropertyChangeListener().
We ignore the problem in this interface. A solution must be provided
in an additional XConnectionPoint interface.
@@ -143,7 +143,7 @@ published interface XConnectionPoint: com::sun::star::uno::XInterface
A few remove...Listener
methods need additional
parameters to add listeners or throw exceptions. One of these methods
- is XPropertySet::removePropertyChangeListener.
+ is com::sun::star::beans::XPropertySet::removePropertyChangeListener().
We ignore the problem in this interface. A solution must be
provided in an additional XConnectionPoint interface.
--
cgit