summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-05-26 17:18:01 +0000
committerJulien Nabet <serval2412@yahoo.fr>2019-05-26 20:12:58 +0200
commit35915bc36f5ea2949259dbcf0de81b53b017a15f (patch)
treeae1f740538f29ca6b3a9909857a9cee7a31bd2cb /filter
parent96fda9ca44eb60807841ae8de1626aa7e189517d (diff)
Fix typo
Change-Id: Ic25d54239a075289ec2bdce1d6eb4e7e93e2ae02 Reviewed-on: https://gerrit.libreoffice.org/72994 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/config/cache/basecontainer.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/filter/source/config/cache/basecontainer.hxx b/filter/source/config/cache/basecontainer.hxx
index 0182ef0882cb..fa75e3ec5fc7 100644
--- a/filter/source/config/cache/basecontainer.hxx
+++ b/filter/source/config/cache/basecontainer.hxx
@@ -67,11 +67,11 @@ class BaseContainer : public BaseLock
css::uno::WeakReference< css::util::XRefreshable > m_xRefreshBroadcaster;
/** @short the implementation name of our derived class, which we provide
- at the interface XServiceInfo of our class ... */
+ at the interface XServiceInfo of our class... */
OUString m_sImplementationName;
/** @short the list of supported uno service names of our derived class, which we provide
- at the interface XServiceInfo of our class ... */
+ at the interface XServiceInfo of our class... */
css::uno::Sequence< OUString > m_lServiceNames;
/** @short local filter cache, which is used to collect changes on the
@@ -109,7 +109,7 @@ class BaseContainer : public BaseLock
/** @short standard ctor.
@descr Because mostly this class is used as base class for own service
- implementations in combination with a ImplInheritanceHelper template ...
+ implementations in combination with an ImplInheritanceHelper template...
there is no way to provide some initializing data through the ctor :-(
This base class will be created inside its default ctor and must be
initialized with its needed parameters explicitly by calling: "init()".
@@ -128,8 +128,8 @@ class BaseContainer : public BaseLock
from our derived object.
@descr Because an outside class must use ImplInheritanceHelper template to
- use us a base class ... and there is no way to pass such initializing
- parameters through a required default ctor ... we must be initialized
+ use us a base class... and there is no way to pass such initializing
+ parameters through a required default ctor... we must be initialized
by this special method. Of course this method must be called first before
any other interface method is used.
@@ -138,11 +138,11 @@ class BaseContainer : public BaseLock
@param sImplementationName
the implementation name of our derived class, which we provide
- at the interface XServiceInfo of our class ...
+ at the interface XServiceInfo of our class...
@param lServiceNames
the list of supported uno service names of our derived class, which we provide
- at the interface XServiceInfo of our class ...
+ at the interface XServiceInfo of our class...
@param eType
specify, which sub container of the used filter cache
@@ -241,7 +241,7 @@ class BaseContainer : public BaseLock
// XContainerQuery
- // must be implemented really by derived class ...
+ // must be implemented really by derived class...
// We implement return of an empty result here only!
// But we show an assertion :-)
virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createSubSetEnumerationByQuery(const OUString& sQuery) override;