[Libreoffice-commits] core.git: basic/source desktop/source external/nss linguistic/source package/source pyuno/source sal/osl sal/qa sd/source svx/source wizards/com xmloff/source

Julien Nabet serval2412 at yahoo.fr
Sat Jun 13 00:14:49 PDT 2015


 basic/source/classes/sbunoobj.cxx                               |    4 ++--
 desktop/source/deployment/registry/help/dp_help.cxx             |    2 +-
 external/nss/nss-pem.patch                                      |    2 +-
 linguistic/source/gciterator.cxx                                |    2 +-
 package/source/zippackage/ZipPackage.cxx                        |    2 +-
 pyuno/source/module/pyuno_runtime.cxx                           |    2 +-
 sal/osl/w32/conditn.c                                           |    2 +-
 sal/qa/osl/module/osl_Module_DLL.cxx                            |    2 +-
 sd/source/ui/framework/configuration/ResourceFactoryManager.hxx |    2 +-
 svx/source/accessibility/AccessibleShape.cxx                    |    2 +-
 svx/source/table/accessiblecell.cxx                             |    2 +-
 wizards/com/sun/star/wizards/fax/FaxWizardDialogImpl.py         |    2 +-
 wizards/com/sun/star/wizards/letter/LetterWizardDialogImpl.py   |    2 +-
 xmloff/source/text/XMLPropertyBackpatcher.cxx                   |    2 +-
 14 files changed, 15 insertions(+), 15 deletions(-)

New commits:
commit 3754474cdea72ebe7f09457ef82a5c3131d06b78
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sat Jun 13 09:12:34 2015 +0200

    Typos
    
    Change-Id: I21c352a63d668c174eef212dbfbe6346c678ce4d

diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 33db5c1..5726137 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 ea00434..d1c9094 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 c3f28bc..d41809d 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 35c9fe4..2fe33bf 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 5013e93..8f1b3da 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 2509997..8b927a6 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 b86ad1a..9947929 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 23e930e..ef1a87c 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 dcb2483..ffcf61e 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 ce6335e..160896a 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 b41e500..a1437b3 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 390ba6f..31ac744 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 f4a16e2..dff5647 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 2e78d2d..330f777 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


More information about the Libreoffice-commits mailing list