diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-05-10 09:34:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-05-10 14:50:59 +0200 |
commit | fbc038cc4f4a12f8302ce5b3bd7d739bd66a674e (patch) | |
tree | d6cc189748e5980420cc0611b44b28ec4183ea25 /include/unotools | |
parent | 8ccffe4e7fb6abf6fa3ba9187007e9d8af116baf (diff) |
an uno -> a uno
Change-Id: I538db88f8477dd2d2ad25c372928fec6c11d979d
Reviewed-on: https://gerrit.libreoffice.org/72105
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/unotools')
-rw-r--r-- | include/unotools/sharedunocomponent.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/unotools/sharedunocomponent.hxx b/include/unotools/sharedunocomponent.hxx index 60685334461d..81e2a253c6de 100644 --- a/include/unotools/sharedunocomponent.hxx +++ b/include/unotools/sharedunocomponent.hxx @@ -36,7 +36,7 @@ namespace utl //= DisposableComponent - /** is a class which controls lifetime of an UNO component via ->XComponent::dispose + /** is a class which controls lifetime of a UNO component via ->XComponent::dispose You'll usually never use this class directly, but only as parameter for a ->SharedUNOComponent class. @@ -69,7 +69,7 @@ namespace utl //= CloseableComponent class CloseableComponentImpl; - /** is a class which controls lifetime of an UNO component via ->XCloseable::close + /** is a class which controls lifetime of a UNO component via ->XCloseable::close You'll usually never use this class directly, but only as parameter for a ->SharedUNOComponent class. @@ -110,7 +110,7 @@ namespace utl /** is a helper class for sharing ownership of a UNO component - If you need to share an UNO component, which normally needs a dedicated owner, + If you need to share a UNO component, which normally needs a dedicated owner, and is lifetime controlled by an explicit disposal action (not necessarily ->XComponent::dispose, but <em>any</em> explicit method call, after which the object is considered to be disposed), between different classes, ->SharedUNOComponent is what you need. |