summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-05 09:17:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-05 10:11:33 +0200
commit146033f5da8ee588c9a4dda93aba64477e174541 (patch)
tree99fc84a0f5ee143c5c2da55633dc6d3e39af897c /framework
parent17a2c9e8e2361de27013a25e51f3a3ca729f1b31 (diff)
spelling instanciate -> instantiate
Change-Id: Ic1393da64328c0dc7e2860334b204139bf537d81 Reviewed-on: https://gerrit.libreoffice.org/38401 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework')
-rw-r--r--framework/inc/jobs/configaccess.hxx2
-rw-r--r--framework/inc/macros/registration.hxx2
-rw-r--r--framework/inc/threadhelp/transactionbase.hxx2
-rw-r--r--framework/source/classes/taskcreator.cxx2
-rw-r--r--framework/source/helper/oframes.cxx2
-rw-r--r--framework/source/uielement/menubarmanager.cxx2
6 files changed, 6 insertions, 6 deletions
diff --git a/framework/inc/jobs/configaccess.hxx b/framework/inc/jobs/configaccess.hxx
index b705b910d652..54fb27285782 100644
--- a/framework/inc/jobs/configaccess.hxx
+++ b/framework/inc/jobs/configaccess.hxx
@@ -59,7 +59,7 @@ class FWI_DLLPUBLIC ConfigAccess final
/**
reference to the uno service manager
- It's necessary to instanciate own needed services.
+ It's necessary to instantiate own needed services.
*/
css::uno::Reference< css::uno::XComponentContext > m_xContext;
diff --git a/framework/inc/macros/registration.hxx b/framework/inc/macros/registration.hxx
index 0e072e27a9d9..d65d8d12e305 100644
--- a/framework/inc/macros/registration.hxx
+++ b/framework/inc/macros/registration.hxx
@@ -49,7 +49,7 @@ ________________________________________________________________________________
}
// public
-// define method to instanciate new services
+// define method to instantiate new services
#define COMPONENTGETFACTORY( LIB, IFFACTORIES ) \
extern "C" SAL_DLLPUBLIC_EXPORT void* SAL_CALL LIB##_component_getFactory( const sal_Char* pImplementationName, \
diff --git a/framework/inc/threadhelp/transactionbase.hxx b/framework/inc/threadhelp/transactionbase.hxx
index 5ebaf770a0f8..71e4195dedd4 100644
--- a/framework/inc/threadhelp/transactionbase.hxx
+++ b/framework/inc/threadhelp/transactionbase.hxx
@@ -25,7 +25,7 @@
namespace framework{
/*-************************************************************************************************************
- @short make it possible to instanciate a transaction manager as first member!
+ @short make it possible to instantiate a transaction manager as first member!
@descr If you use a transaction manager as a member of your class and wish to use it earlier then other ones
you should have a look on this implementation. You must use it as the first base class
of your implementation - because base classes are initialized by his order and before your
diff --git a/framework/source/classes/taskcreator.cxx b/framework/source/classes/taskcreator.cxx
index 9994fa944c70..b91599d05e95 100644
--- a/framework/source/classes/taskcreator.cxx
+++ b/framework/source/classes/taskcreator.cxx
@@ -35,7 +35,7 @@ namespace framework{
/*-****************************************************************************************************
@short initialize instance with necessary information
- @descr We need a valid uno service manager to create or instanciate new services.
+ @descr We need a valid uno service manager to create or instantiate new services.
All other information to create frames or tasks come in on right interface methods.
@param xContext
diff --git a/framework/source/helper/oframes.cxx b/framework/source/helper/oframes.cxx
index 2772efd9a11b..19082f52503f 100644
--- a/framework/source/helper/oframes.cxx
+++ b/framework/source/helper/oframes.cxx
@@ -43,7 +43,7 @@ OFrames::OFrames( const css::uno::Reference< XFrame >& xOwner
, m_bRecursiveSearchProtection( false )
{
// An instance of this class can only work with valid initialization.
- // We share the mutex with our owner class, need a valid factory to instanciate new services and
+ // We share the mutex with our owner class, need a valid factory to instantiate new services and
// use the access to our owner for some operations.
SAL_WARN_IF( !xOwner.is() || !pFrameContainer, "fwk", "OFrames::OFrames(): Invalid parameter detected!" );
}
diff --git a/framework/source/uielement/menubarmanager.cxx b/framework/source/uielement/menubarmanager.cxx
index 4b6a35d1afcc..6ccdacffff05 100644
--- a/framework/source/uielement/menubarmanager.cxx
+++ b/framework/source/uielement/menubarmanager.cxx
@@ -1018,7 +1018,7 @@ bool MenuBarManager::CreatePopupMenuController( MenuItemHandler* pMenuItemHandle
{
OUString aItemCommand( pMenuItemHandler->aMenuItemURL );
- // Try instanciate a popup menu controller. It is stored in the menu item handler.
+ // Try instantiate a popup menu controller. It is stored in the menu item handler.
if ( !m_xPopupMenuControllerFactory.is() )
return false;