diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-06-13 09:12:34 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-06-13 09:13:52 +0200 |
commit | 3754474cdea72ebe7f09457ef82a5c3131d06b78 (patch) | |
tree | bc2ce16e15475dda27d89f61d8cb2b0558df27ed | |
parent | d56b125f6c6c18ac40712cefc3cec06530750e15 (diff) |
Typos
Change-Id: I21c352a63d668c174eef212dbfbe6346c678ce4d
-rw-r--r-- | basic/source/classes/sbunoobj.cxx | 4 | ||||
-rw-r--r-- | desktop/source/deployment/registry/help/dp_help.cxx | 2 | ||||
-rw-r--r-- | external/nss/nss-pem.patch | 2 | ||||
-rw-r--r-- | linguistic/source/gciterator.cxx | 2 | ||||
-rw-r--r-- | package/source/zippackage/ZipPackage.cxx | 2 | ||||
-rw-r--r-- | pyuno/source/module/pyuno_runtime.cxx | 2 | ||||
-rw-r--r-- | sal/osl/w32/conditn.c | 2 | ||||
-rw-r--r-- | sal/qa/osl/module/osl_Module_DLL.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/framework/configuration/ResourceFactoryManager.hxx | 2 | ||||
-rw-r--r-- | svx/source/accessibility/AccessibleShape.cxx | 2 | ||||
-rw-r--r-- | svx/source/table/accessiblecell.cxx | 2 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py | 2 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py | 2 | ||||
-rw-r--r-- | xmloff/source/text/XMLPropertyBackpatcher.cxx | 2 |
14 files changed, 15 insertions, 15 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index 33db5c1462e0..572613786219 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -3006,7 +3006,7 @@ void RTL_Impl_CreateUnoService( StarBASIC* pBasic, SbxArray& rPar, bool bWrite ) // get the name of the class of the struct OUString aServiceName = rPar.Get(1)->GetOUString(); - // search for the service and instatiate it + // search for the service and instantiate it Reference< XMultiServiceFactory > xFactory( comphelper::getProcessServiceFactory() ); Reference< XInterface > xInterface; try @@ -3061,7 +3061,7 @@ void RTL_Impl_CreateUnoServiceWithArguments( StarBASIC* pBasic, SbxArray& rPar, Sequence< Any > aArgs; aArgAsAny >>= aArgs; - // search for the service and instatiate it + // search for the service and instantiate it Reference< XMultiServiceFactory > xFactory( comphelper::getProcessServiceFactory() ); Reference< XInterface > xInterface; try diff --git a/desktop/source/deployment/registry/help/dp_help.cxx b/desktop/source/deployment/registry/help/dp_help.cxx index ea00434b2189..d1c9094c82d7 100644 --- a/desktop/source/deployment/registry/help/dp_help.cxx +++ b/desktop/source/deployment/registry/help/dp_help.cxx @@ -614,7 +614,7 @@ Reference< ucb::XSimpleFileAccess3 > BackendImpl::getFileAccess() { throw RuntimeException( "dp_registry::backend::help::BackendImpl::getFileAccess(), " - "could not instatiate SimpleFileAccess." ); + "could not instantiate SimpleFileAccess." ); } } return m_xSFA; diff --git a/external/nss/nss-pem.patch b/external/nss/nss-pem.patch index c3f28bc74a6d..d41809d3ecaf 100644 --- a/external/nss/nss-pem.patch +++ b/external/nss/nss-pem.patch @@ -560,7 +560,7 @@ index 0000000..ff6cd9a + +# +# Override TARGETS variable so that only shared libraries -+# are specifed as dependencies within rules.mk. ++# are specified as dependencies within rules.mk. +# + +TARGETS = $(SHARED_LIBRARY) diff --git a/linguistic/source/gciterator.cxx b/linguistic/source/gciterator.cxx index 35c9fe493d33..2fe33bff5ff5 100644 --- a/linguistic/source/gciterator.cxx +++ b/linguistic/source/gciterator.cxx @@ -453,7 +453,7 @@ uno::Reference< linguistic2::XProofreader > GrammarCheckingIterator::GetGrammarC { xRes = aImplNameIt->second; } - else // the service is to be instatiated here for the first time... + else // the service is to be instantiated here for the first time... { try { diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx index 5013e93a2e5f..8f1b3dab5f76 100644 --- a/package/source/zippackage/ZipPackage.cxx +++ b/package/source/zippackage/ZipPackage.cxx @@ -1455,7 +1455,7 @@ void SAL_CALL ZipPackage::commitChanges() // write directly in case of local file uno::Reference< ::com::sun::star::ucb::XSimpleFileAccess3 > xSimpleAccess( SimpleFileAccess::create( m_xContext ) ); - OSL_ENSURE( xSimpleAccess.is(), "Can't instatiate SimpleFileAccess service!\n" ); + OSL_ENSURE( xSimpleAccess.is(), "Can't instantiate SimpleFileAccess service!\n" ); uno::Reference< io::XTruncate > xOrigTruncate; if ( xSimpleAccess.is() ) { diff --git a/pyuno/source/module/pyuno_runtime.cxx b/pyuno/source/module/pyuno_runtime.cxx index 2509997977a1..8b927a6c2514 100644 --- a/pyuno/source/module/pyuno_runtime.cxx +++ b/pyuno/source/module/pyuno_runtime.cxx @@ -487,7 +487,7 @@ PyRef Runtime::any2PyObject (const Any &a ) const if( ! ret.is() ) { OUStringBuffer buf; - buf.appendAscii( "Couldn't instantiate python representation of structered UNO type " ); + buf.appendAscii( "Couldn't instantiate python representation of structured UNO type " ); buf.append( a.getValueType().getTypeName() ); throw RuntimeException( buf.makeStringAndClear() ); } diff --git a/sal/osl/w32/conditn.c b/sal/osl/w32/conditn.c index b86ad1a3f377..9947929fd7e4 100644 --- a/sal/osl/w32/conditn.c +++ b/sal/osl/w32/conditn.c @@ -91,7 +91,7 @@ oslConditionResult SAL_CALL osl_waitCondition(oslCondition Condition, timeout = INFINITE; /* It's necessary to process SendMessage calls to the current thread to give other threads - access to COM objects instatiated in this thread */ + access to COM objects instantiated in this thread */ while ( 1 ) { diff --git a/sal/qa/osl/module/osl_Module_DLL.cxx b/sal/qa/osl/module/osl_Module_DLL.cxx index 23e930e9b3dc..ef1a87c9a029 100644 --- a/sal/qa/osl/module/osl_Module_DLL.cxx +++ b/sal/qa/osl/module/osl_Module_DLL.cxx @@ -24,7 +24,7 @@ // This module contains no tests. It is loaded as a dynamic library by // osl_Module. -// But we instatiate a test plugin to fake the build process. +// But we instantiate a test plugin to fake the build process. CPPUNIT_PLUGIN_IMPLEMENT(); extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL firstfunc( sal_Bool ) diff --git a/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx b/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx index dcb24835f1fc..ffcf61e0fc47 100644 --- a/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx +++ b/sd/source/ui/framework/configuration/ResourceFactoryManager.hxx @@ -55,7 +55,7 @@ public: const css::uno::Reference<css::drawing::framework::XResourceFactory>& rxFactory) throw (css::uno::RuntimeException); - /** Unregister the specifed factory. + /** Unregister the specified factory. @param rsURL Unregister only the factory for this URL. When the same factory is registered for other URLs then these remain registered. diff --git a/svx/source/accessibility/AccessibleShape.cxx b/svx/source/accessibility/AccessibleShape.cxx index ce6335e8a0b9..160896ad8498 100644 --- a/svx/source/accessibility/AccessibleShape.cxx +++ b/svx/source/accessibility/AccessibleShape.cxx @@ -511,7 +511,7 @@ uno::Reference<XAccessibleStateSet> SAL_CALL // XAccessibleComponent /** The implementation below is at the moment straightforward. It iterates over all children (and thereby instances all children which have not - been already instatiated) until a child covering the specifed point is + been already instantiated) until a child covering the specified point is found. This leaves room for improvement. For instance, first iterate only over the already instantiated children and only if no match is found diff --git a/svx/source/table/accessiblecell.cxx b/svx/source/table/accessiblecell.cxx index b41e5002f8e3..a1437b3a58ae 100644 --- a/svx/source/table/accessiblecell.cxx +++ b/svx/source/table/accessiblecell.cxx @@ -276,7 +276,7 @@ sal_Bool SAL_CALL AccessibleCell::containsPoint( const ::com::sun::star::awt::Po /** The implementation below is at the moment straightforward. It iterates over all children (and thereby instances all children which have not - been already instatiated) until a child covering the specifed point is + been already instantiated) until a child covering the specified point is found. This leaves room for improvement. For instance, first iterate only over the already instantiated children and only if no match is found diff --git a/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py b/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py index 390ba6f25644..31ac74470508 100644 --- a/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py +++ b/wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py @@ -64,7 +64,7 @@ class FaxWizardDialogImpl(FaxWizardDialog): #Number of steps on WizardDialog self.nMaxStep = 5 - #instatiate The Document Frame for the Preview + #instantiate The Document Frame for the Preview self.terminateListener = TerminateListenerProcAdapter(self) self.myFaxDoc = FaxDocument(xMSF, self.terminateListener) diff --git a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py index f4a16e2c220b..dff56474b24f 100644 --- a/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py +++ b/wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py @@ -71,7 +71,7 @@ class LetterWizardDialogImpl(LetterWizardDialog): #Number of steps on WizardDialog self.nMaxStep = 6 - #instatiate The Document Frame for the Preview + #instantiate The Document Frame for the Preview self.terminateListener = TerminateListenerProcAdapter(self) self.myLetterDoc = LetterDocument(xMSF, self.terminateListener) diff --git a/xmloff/source/text/XMLPropertyBackpatcher.cxx b/xmloff/source/text/XMLPropertyBackpatcher.cxx index 2e78d2d87a05..330f777613c5 100644 --- a/xmloff/source/text/XMLPropertyBackpatcher.cxx +++ b/xmloff/source/text/XMLPropertyBackpatcher.cxx @@ -181,7 +181,7 @@ static OUString GetSequenceNumber() // Code from XMLTextImportHelper using the XMLPropertyBackpatcher is // implemented here. The reason is that in the unxsols2 environment, -// all templates are instatiated as file local (switch +// all templates are instantiated as file local (switch // -instances=static), and thus are not accessible from the outside. // The previous solution was to force additional instantiation of |