diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-20 08:54:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-20 08:55:29 +0200 |
commit | 8f56d408729108ed1c6fdca258d3ef6029863c78 (patch) | |
tree | 2cf8e8715c5d1cdeecd37e7276b04fdd6056850e /include/cppuhelper | |
parent | ef5b37726335034de44e6e7cc2035f798d66f753 (diff) |
improper use of this/that just bugs me
Change-Id: Ie05062cfe384971f5c358769ab16461a76f911cf
Diffstat (limited to 'include/cppuhelper')
-rw-r--r-- | include/cppuhelper/weakref.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cppuhelper/weakref.hxx b/include/cppuhelper/weakref.hxx index 9cd422b8aab6..11095b700362 100644 --- a/include/cppuhelper/weakref.hxx +++ b/include/cppuhelper/weakref.hxx @@ -41,7 +41,7 @@ class OWeakRefListener; /** The WeakReferenceHelper holds a weak reference to an object. - This object must implement the css::uno::XWeak interface. + That object must implement the css::uno::XWeak interface. The WeakReferenceHelper itself is *not* thread safe, just as Reference itself isn't, but the implementation of the listeners etc. @@ -64,7 +64,7 @@ public: WeakReferenceHelper( const WeakReferenceHelper & rWeakRef ); /** Initialize this reference with the hard interface reference xInt. If the implementation - behind xInt does not support XWeak or XInt is null then this reference will be null. + behind xInt does not support XWeak or xInt is null then this reference will be null. @param xInt another hard interface reference */ @@ -124,7 +124,7 @@ protected: /** The WeakReference<> holds a weak reference to an object. - This object must implement the css::uno::XWeak interface. + That object must implement the css::uno::XWeak interface. The WeakReference itself is *not* thread safe, just as Reference itself isn't, but the implementation of the listeners etc. |