summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cppuhelper/source/propshlp.cxx2
-rw-r--r--dbaccess/source/ui/querydesign/QueryTableView.cxx2
-rw-r--r--forms/source/xforms/model_ui.cxx2
-rw-r--r--fpicker/source/win32/folderpicker/MtaFop.cxx2
-rw-r--r--framework/source/jobs/jobdata.cxx2
-rw-r--r--framework/source/uielement/menubarmanager.cxx2
-rw-r--r--include/LibreOfficeKit/LibreOfficeKitInit.h2
-rw-r--r--include/osl/conditn.hxx2
8 files changed, 8 insertions, 8 deletions
diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx
index 14a1cb45a077..b8bb9cd737ba 100644
--- a/cppuhelper/source/propshlp.cxx
+++ b/cppuhelper/source/propshlp.cxx
@@ -467,7 +467,7 @@ void OPropertySetHelper::setDependentFastPropertyValue( sal_Int32 i_handle, cons
catch (const RuntimeException& ) { throw; /* allowed to leave */ }
catch (const Exception& )
{
- // not allowed to leave this meathod
+ // not allowed to leave this method
WrappedTargetException aWrapped;
aWrapped.TargetException = ::cppu::getCaughtException();
aWrapped.Context = static_cast< XPropertySet* >( this );
diff --git a/dbaccess/source/ui/querydesign/QueryTableView.cxx b/dbaccess/source/ui/querydesign/QueryTableView.cxx
index f96a49e61852..ce4ac928d7c8 100644
--- a/dbaccess/source/ui/querydesign/QueryTableView.cxx
+++ b/dbaccess/source/ui/querydesign/QueryTableView.cxx
@@ -215,7 +215,7 @@ namespace
// don't create an Undo-Action for the new connection : the connection is
// covered by the Undo-Action for the tabwin, as the "Undo the insert" will
// automatically remove all connections adjacent to the win.
- // (Because of this automatism we would have an ownerhsip ambiguity for
+ // (Because of this automatism we would have an ownership ambiguity for
// the connection data if we would insert the conn-Undo-Action)
}
}
diff --git a/forms/source/xforms/model_ui.cxx b/forms/source/xforms/model_ui.cxx
index b487f8680667..c66bdfe99d3d 100644
--- a/forms/source/xforms/model_ui.cxx
+++ b/forms/source/xforms/model_ui.cxx
@@ -366,7 +366,7 @@ Model::XPropertySet_t Model::cloneBindingAsGhost( const XPropertySet_t &xBinding
// Create a new binding instance first...
Binding *pBinding = new Binding();
- // ...and bump up the "defered notification counter"
+ // ...and bump up the "deferred notification counter"
// to prevent this binding from contributing to the
// MIPs table...
pBinding->deferNotifications(true);
diff --git a/fpicker/source/win32/folderpicker/MtaFop.cxx b/fpicker/source/win32/folderpicker/MtaFop.cxx
index 3bee561b9304..43908c947020 100644
--- a/fpicker/source/win32/folderpicker/MtaFop.cxx
+++ b/fpicker/source/win32/folderpicker/MtaFop.cxx
@@ -280,7 +280,7 @@ bool CMtaFolderPicker::browseForFolder( )
// dispatching all messages but we expect to
// receive only paint or timer messages that's
// why we don't need to call TranslateMessage or
- // TranslateAccelerator, because keybord or
+ // TranslateAccelerator, because keyboard or
// mouse messages are for the FolderPicker which
// is in the foreground and should not arrive here
MSG msg;
diff --git a/framework/source/jobs/jobdata.cxx b/framework/source/jobs/jobdata.cxx
index 05f14cb0427b..8555605a3673 100644
--- a/framework/source/jobs/jobdata.cxx
+++ b/framework/source/jobs/jobdata.cxx
@@ -264,7 +264,7 @@ void JobData::setJobConfig( const std::vector< css::beans::NamedValue >& lArgume
}
/**
- @short set a new excution result
+ @short set a new execution result
@descr Every executed job can have returned a result.
We set it here, so our user can use it may be later.
But the outside code can use it too, to analyze it and
diff --git a/framework/source/uielement/menubarmanager.cxx b/framework/source/uielement/menubarmanager.cxx
index 0f7795088ddf..4b6a35d1afcc 100644
--- a/framework/source/uielement/menubarmanager.cxx
+++ b/framework/source/uielement/menubarmanager.cxx
@@ -189,7 +189,7 @@ void MenuBarManager::Destroy()
if ( !rBHelper.bDisposed )
{
// stop asynchronous settings timer and
- // release defered item container reference
+ // release deferred item container reference
m_aAsyncSettingsTimer.Stop();
m_xDeferedItemContainer.clear();
RemoveListener();
diff --git a/include/LibreOfficeKit/LibreOfficeKitInit.h b/include/LibreOfficeKit/LibreOfficeKitInit.h
index 8206d91f03f3..0c8e718d7208 100644
--- a/include/LibreOfficeKit/LibreOfficeKitInit.h
+++ b/include/LibreOfficeKit/LibreOfficeKitInit.h
@@ -61,7 +61,7 @@ extern "C"
{
(void)pPath;
}
-#endif // TARGERT_OS_IPHONE
+#endif // TARGET_OS_IPHONE
static void *lok_dlsym(void *Hnd, const char *pName)
{
diff --git a/include/osl/conditn.hxx b/include/osl/conditn.hxx
index ffc7cc6b5c82..43a1d07cb157 100644
--- a/include/osl/conditn.hxx
+++ b/include/osl/conditn.hxx
@@ -56,7 +56,7 @@ namespace osl
public:
enum Result
{
- result_ok = osl_cond_result_ok, /*!< Succesful completion. */
+ result_ok = osl_cond_result_ok, /*!< Successful completion. */
result_error = osl_cond_result_error, /*!< Error occurred. @see osl_getLastSocketError() */
result_timeout = osl_cond_result_timeout /*!< Blocking operation timed out. */
};