summaryrefslogtreecommitdiff
path: root/framework/inc
diff options
context:
space:
mode:
Diffstat (limited to 'framework/inc')
-rw-r--r--framework/inc/classes/checkediterator.hxx2
-rw-r--r--framework/inc/classes/framecontainer.hxx2
-rw-r--r--framework/inc/helper/statusindicatorfactory.hxx4
-rw-r--r--framework/inc/jobs/jobconst.hxx2
-rw-r--r--framework/inc/macros/xserviceinfo.hxx2
-rw-r--r--framework/inc/services/desktop.hxx4
-rw-r--r--framework/inc/services/dispatchhelper.hxx2
7 files changed, 9 insertions, 9 deletions
diff --git a/framework/inc/classes/checkediterator.hxx b/framework/inc/classes/checkediterator.hxx
index ab3879ea302b..2f9834e80409 100644
--- a/framework/inc/classes/checkediterator.hxx
+++ b/framework/inc/classes/checkediterator.hxx
@@ -80,7 +80,7 @@ class CheckedIterator
inline CheckedIterator& operator++()
{
- // Warn programmer if he forget to initailize object!
+ // Warn programmer if he forget to initialize object!
SAL_WARN_IF( m_pContainer==nullptr, "fwk", "CheckedIterator::operator++(): Object not initialized!" );
// Step to next element if any exist or set our end states.
switch( m_eEndState )
diff --git a/framework/inc/classes/framecontainer.hxx b/framework/inc/classes/framecontainer.hxx
index fb7cf04e3b89..24017576f80d 100644
--- a/framework/inc/classes/framecontainer.hxx
+++ b/framework/inc/classes/framecontainer.hxx
@@ -87,7 +87,7 @@ class FrameContainer
sal_uInt32 getCount ( ) const;
css::uno::Reference< css::frame::XFrame > operator[]( sal_uInt32 nIndex ) const;
- /// replacement for deprectaed index access
+ /// replacement for deprecated index access
css::uno::Sequence< css::uno::Reference< css::frame::XFrame > > getAllElements() const;
/// special helper for Frame::findFrame()
diff --git a/framework/inc/helper/statusindicatorfactory.hxx b/framework/inc/helper/statusindicatorfactory.hxx
index f22e0e0c8fd1..1a0ada7c6d1b 100644
--- a/framework/inc/helper/statusindicatorfactory.hxx
+++ b/framework/inc/helper/statusindicatorfactory.hxx
@@ -54,7 +54,7 @@
namespace framework{
/**
- @descr This struct hold some information about all currently running progress proccesses.
+ @descr This struct hold some information about all currently running progress processes.
Because the can be used on a stack, we must cache her states but must paint only
the top most one.
*/
@@ -83,7 +83,7 @@ struct IndicatorInfo
/** @short initialize new instance of this class
@param xIndicator
- the new child indiactor of our factory.
+ the new child indicator of our factory.
@param sText
its initial text.
diff --git a/framework/inc/jobs/jobconst.hxx b/framework/inc/jobs/jobconst.hxx
index 7356ebb40fb1..1b80c416426d 100644
--- a/framework/inc/jobs/jobconst.hxx
+++ b/framework/inc/jobs/jobconst.hxx
@@ -34,7 +34,7 @@ namespace framework{
@descr The protocol between job executor/dispatch and jobs is fix and well defined.
But why every implemented job should write such constant values directly into
it's code. Typos can occur or code will be changed by new developers ...
- Shared set of constant values can help to improve the mentainance of this code.
+ Shared set of constant values can help to improve the maintenance of this code.
*/
class FWI_DLLPUBLIC JobConst
{
diff --git a/framework/inc/macros/xserviceinfo.hxx b/framework/inc/macros/xserviceinfo.hxx
index e8fb47dfc8b4..2e905beffdeb 100644
--- a/framework/inc/macros/xserviceinfo.hxx
+++ b/framework/inc/macros/xserviceinfo.hxx
@@ -47,7 +47,7 @@ namespace framework{
1) DECLARE_XSERVICEINFO => use it to declare XServiceInfo in your header
2) DEFINE_XSERVICEINFO_MULTISERVICE( CLASS, XINTERFACECAST, SERVICENAME, IMPLEMENTATIONNAME ) => use it to define XServiceInfo for multi service mode
3) DEFINE_XSERVICEINFO_ONEINSTANCESERVICE( CLASS, XINTERFACECAST, SERVICENAME, IMPLEMENTATIONNAME ) => use it to define XServiceInfo for one instance service mode
- 4) DEFINE_INIT_SERVICE( CLASS ) => use it to implement your own impl_initService() method, which is necessary for initializeing object by using his own reference!
+ 4) DEFINE_INIT_SERVICE( CLASS ) => use it to implement your own impl_initService() method, which is necessary for initializing object by using his own reference!
*/
#define PRIVATE_DEFINE_XSERVICEINFO_BASE( CLASS, XINTERFACECAST, SERVICENAME, IMPLEMENTATIONNAME ) \
diff --git a/framework/inc/services/desktop.hxx b/framework/inc/services/desktop.hxx
index 1731dd846782..1212397d0a8d 100644
--- a/framework/inc/services/desktop.hxx
+++ b/framework/inc/services/desktop.hxx
@@ -150,7 +150,7 @@ class Desktop : private cppu::BaseMutex,
different to all other listener.
Btw: Desktop.terminate() was designed in the past to be used
- within an UI based envrionment. So it's allowed e.g. to
+ within an UI based environment. So it's allowed e.g. to
call XController.suspend() here. If UI isn't an option ... please
use XCloseable.close() at these desktop implementation.
... if it will be supported in the future .-))
@@ -331,7 +331,7 @@ class Desktop : private cppu::BaseMutex,
*
* @param [out] lCalledListener
* every called listener will be returned here.
- * Those list will be used to informa all called listener
+ * Those list will be used to inform all called listener
* about cancel this termination request.
*
* @param [out] bVeto
diff --git a/framework/inc/services/dispatchhelper.hxx b/framework/inc/services/dispatchhelper.hxx
index ae290c32ef4a..de8e9721889f 100644
--- a/framework/inc/services/dispatchhelper.hxx
+++ b/framework/inc/services/dispatchhelper.hxx
@@ -39,7 +39,7 @@ namespace framework{
@short implements an easy way for dispatches
@descr Dispatches are splitted into different parts:
- parsing of the URL
- - searching for a dispatcgh object
+ - searching for a dispatch object
- dispatching of the URL
All these steps are done inside one method call here.
*/