diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/configurationhelper.hxx | 4 | ||||
-rw-r--r-- | include/comphelper/namedvaluecollection.hxx | 2 | ||||
-rw-r--r-- | include/framework/dispatchhelper.hxx | 2 | ||||
-rw-r--r-- | include/salhelper/singletonref.hxx | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/include/comphelper/configurationhelper.hxx b/include/comphelper/configurationhelper.hxx index 45890ccfa5d7..4a9243a24204 100644 --- a/include/comphelper/configurationhelper.hxx +++ b/include/comphelper/configurationhelper.hxx @@ -210,7 +210,7 @@ public: * Because it opens the specified configuration package, reads the key and * closes the configuration again. * - * So its not very useful to use this method for reading multiple keys at the same time. + * So it's not very useful to use this method for reading multiple keys at the same time. * (Excepting these keys exists inside different configuration packages ...)) */ static css::uno::Any readDirectKey(const css::uno::Reference< css::uno::XComponentContext >& rxContext, @@ -226,7 +226,7 @@ public: * Because it opens the specified configuration package, writes the key, flush * all changes and closes the configuration again. * - * So its not very useful to use this method for writing multiple keys at the same time. + * So it's not very useful to use this method for writing multiple keys at the same time. * (Excepting these keys exists inside different configuration packages ...)) */ static void writeDirectKey(const css::uno::Reference< css::uno::XComponentContext >& rxContext, diff --git a/include/comphelper/namedvaluecollection.hxx b/include/comphelper/namedvaluecollection.hxx index 420994b3b7ae..cb850aa26574 100644 --- a/include/comphelper/namedvaluecollection.hxx +++ b/include/comphelper/namedvaluecollection.hxx @@ -157,7 +157,7 @@ namespace comphelper return get_ensureType( _rValueName, &_out_rValue, ::cppu::UnoType< VALUE_TYPE >::get() ); } - /** retrieves a value with a given name, or defaults it to a given value, if its not present + /** retrieves a value with a given name, or defaults it to a given value, if it's not present in the collection */ template < typename VALUE_TYPE > diff --git a/include/framework/dispatchhelper.hxx b/include/framework/dispatchhelper.hxx index f1e28e803ea3..3cca78c6a90a 100644 --- a/include/framework/dispatchhelper.hxx +++ b/include/framework/dispatchhelper.hxx @@ -96,7 +96,7 @@ class FWE_DLLPUBLIC DispatchHelper : public ::cppu::WeakImplHelper< css::lang::X const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) throw(css::uno::RuntimeException, std::exception) override; - // not a public XDispatchHelper-method, need in sfx2/source/control/statcach.cxx for extentions + // not a public XDispatchHelper-method, need in sfx2/source/control/statcach.cxx for extensions css::uno::Any SAL_CALL executeDispatch( const css::uno::Reference< css::frame::XDispatch >& xDispatch , const css::util::URL& aURL , diff --git a/include/salhelper/singletonref.hxx b/include/salhelper/singletonref.hxx index 6b96d3e3f452..1dd7ef74597c 100644 --- a/include/salhelper/singletonref.hxx +++ b/include/salhelper/singletonref.hxx @@ -46,7 +46,7 @@ namespace salhelper{ its state) must be made threadsafe by the object itself or from outside. - @attention To prevent the code against race conditions, its not + @attention To prevent the code against race conditions, it's not allowed to start operations inside the ctor of the internal wrapped object - especially operations which needs a reference to the same singleton too. |