diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-04-27 22:32:23 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-06-04 12:01:00 +0200 |
commit | 3122600a5e11309b86e33061defd710cf0872975 (patch) | |
tree | 849f913b061611d306194e07c22071219dafd592 /udkapi/com/sun/star/lang | |
parent | b352a8bf0321c13919c9882484a1c4d4d65cfd33 (diff) |
*api: convert <member>Foo::bar</member>
Doxygen would probably recognize these without () too but add them for
consistency.
sed -i "s,<member>\([^<]*::[a-z][^<:]\+[^)]\)</member>,\1(),g"
Change-Id: I2615b99265b75633459e35164e54d9da7fe76b85
Diffstat (limited to 'udkapi/com/sun/star/lang')
-rw-r--r-- | udkapi/com/sun/star/lang/InvalidListenerException.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/lang/ListenerExistException.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/lang/XComponent.idl | 6 | ||||
-rw-r--r-- | udkapi/com/sun/star/lang/XConnectionPoint.idl | 4 | ||||
-rw-r--r-- | udkapi/com/sun/star/lang/XEventListener.idl | 2 | ||||
-rw-r--r-- | udkapi/com/sun/star/lang/XInitialization.idl | 4 |
6 files changed, 10 insertions, 10 deletions
diff --git a/udkapi/com/sun/star/lang/InvalidListenerException.idl b/udkapi/com/sun/star/lang/InvalidListenerException.idl index 44324fe80810..27825f533b9f 100644 --- a/udkapi/com/sun/star/lang/InvalidListenerException.idl +++ b/udkapi/com/sun/star/lang/InvalidListenerException.idl @@ -25,7 +25,7 @@ module com { module sun { module star { module lang { -/** is thrown by the <member>XConnectionPoint::advice</member> method +/** is thrown by the XConnectionPoint::advice() method to indicate that the listener has not supplied the necessary interface. diff --git a/udkapi/com/sun/star/lang/ListenerExistException.idl b/udkapi/com/sun/star/lang/ListenerExistException.idl index 35d9d3d0ca7f..2e7970383ea4 100644 --- a/udkapi/com/sun/star/lang/ListenerExistException.idl +++ b/udkapi/com/sun/star/lang/ListenerExistException.idl @@ -25,7 +25,7 @@ module com { module sun { module star { module lang { -/** is thrown by the <member>XConnectionPoint::advise</member> method +/** is thrown by the XConnectionPoint::advise() method to indicate that there is only one listener allowed. @see XConnectionPoint diff --git a/udkapi/com/sun/star/lang/XComponent.idl b/udkapi/com/sun/star/lang/XComponent.idl index fc6376aa134c..31c7549b4b1a 100644 --- a/udkapi/com/sun/star/lang/XComponent.idl +++ b/udkapi/com/sun/star/lang/XComponent.idl @@ -51,9 +51,9 @@ published interface XComponent: com::sun::star::uno::XInterface </p> <p> The object must notify all registered listeners using the method - <member>XEventListener::disposing</member>. All notfied objects + XEventListener::disposing(). All notfied objects should release there references to this object without - calling <member>XComponent::removeEventListener</member> + calling XComponent::removeEventListener() (the disposed object will release the listeners eitherway). </p> @@ -75,7 +75,7 @@ published interface XComponent: com::sun::star::uno::XInterface /** adds an event listener to the object. <p>The broadcaster fires the disposing method of this listener - if the <member>XComponent::dispose</member> method is called.</p> + if the XComponent::dispose() method is called.</p> <p>It is suggested to allow multiple registration of the same listener, thus for each time a listener is added, it has to be removed.</p> diff --git a/udkapi/com/sun/star/lang/XConnectionPoint.idl b/udkapi/com/sun/star/lang/XConnectionPoint.idl index 11d90e98a119..cb052e45a24d 100644 --- a/udkapi/com/sun/star/lang/XConnectionPoint.idl +++ b/udkapi/com/sun/star/lang/XConnectionPoint.idl @@ -92,13 +92,13 @@ published interface XConnectionPoint: com::sun::star::uno::XInterface the type of the outgoing interface managed by this connection point. - <p>Using the <member>XConnectionPointContainer::getConnectionPoints</member> + <p>Using the XConnectionPointContainer::getConnectionPoints() method, a client can obtain an XConnectionPoint interface. Using that interface and this method, the client can determine the type of each connection point enumerated. The type returned from this method must enable the caller to access this same connection point through - <member>XConnectionPointContainer::findConnectionPoint</member>. + XConnectionPointContainer::findConnectionPoint(). @see XConnectionPointContainer::findConnectionPoint */ diff --git a/udkapi/com/sun/star/lang/XEventListener.idl b/udkapi/com/sun/star/lang/XEventListener.idl index d553b45cc94b..5b808df56d3b 100644 --- a/udkapi/com/sun/star/lang/XEventListener.idl +++ b/udkapi/com/sun/star/lang/XEventListener.idl @@ -36,7 +36,7 @@ published interface XEventListener: com::sun::star::uno::XInterface <p>All listeners and all other objects, which reference the broadcaster should release the reference to the source. No method should be invoked anymore on this object ( - including <member>XComponent::removeEventListener</member> ). + including XComponent::removeEventListener() ). </p> <p>This method is called for every listener registration diff --git a/udkapi/com/sun/star/lang/XInitialization.idl b/udkapi/com/sun/star/lang/XInitialization.idl index f2f19e3cf9ef..553f5169021e 100644 --- a/udkapi/com/sun/star/lang/XInitialization.idl +++ b/udkapi/com/sun/star/lang/XInitialization.idl @@ -34,9 +34,9 @@ module com { module sun { module star { module lang { support this interface and you may support other interfaces which offer type-safe initialization methods. </p> - <p>Instead of calling <member>XSingleComponentFactory::createInstanceWithContext</member> + <p>Instead of calling XSingleComponentFactory::createInstanceWithContext() and later initialize(), you should call - <member>XSingleComponentFactory::createInstanceWithArgumentsAndContext</member> + XSingleComponentFactory::createInstanceWithArgumentsAndContext() to pass the arguments to the instance. The reason is, that a component may want to return the same instance for the same set of parameters, and it can do so by implementing the factory itself. |