[Libreoffice-commits] core.git: basic/source cli_ure/source cppuhelper/test dbaccess/source reportdesign/source sc/qa

Julien Nabet serval2412 at yahoo.fr
Wed Mar 25 13:20:29 PDT 2015


 basic/source/classes/sbunoobj.cxx            |    4 +--
 cli_ure/source/climaker/climaker_share.h     |    2 -
 cppuhelper/test/testpropshlp.cxx             |   30 +++++++++++++--------------
 dbaccess/source/ui/browser/unodatbr.cxx      |    2 -
 reportdesign/source/ui/dlg/GroupsSorting.cxx |    2 -
 sc/qa/complex/sc/CalcRTL.java                |    2 -
 6 files changed, 21 insertions(+), 21 deletions(-)

New commits:
commit b33788cb6b6d91657ea21eda8cb4925c4b628045
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Wed Mar 25 21:19:59 2015 +0100

    Typos
    
    Change-Id: I665a56fcad10e136e949a10497f6ab8813af9968

diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 3557ed0..77bb0f3 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -2722,7 +2722,7 @@ SbxVariable* SbUnoObject::Find( const OUString& rName, SbxClassType t )
                 }
                 catch( const Exception& )
                 {
-                    // Establish so that the exeption error will not be overwriten
+                    // Establish so that the exception error will not be overwritten
                     if( !pRes )
                         pRes = new SbxVariable( SbxVARIANT );
 
@@ -2771,7 +2771,7 @@ SbxVariable* SbUnoObject::Find( const OUString& rName, SbxClassType t )
             }
             catch( const RuntimeException& e )
             {
-                // Establish so that the exeption error will not be overwriten
+                // Establish so that the exception error will not be overwritten
                 if( !pRes )
                     pRes = new SbxVariable( SbxVARIANT );
 
diff --git a/cli_ure/source/climaker/climaker_share.h b/cli_ure/source/climaker/climaker_share.h
index aa4648c..f7d53bc 100644
--- a/cli_ure/source/climaker/climaker_share.h
+++ b/cli_ure/source/climaker/climaker_share.h
@@ -94,7 +94,7 @@ inline OUString String_to_ustring( ::System::String ^ str )
 }
 
 /* If the argument type is a typedef for an interface then the interface
-   type description is returned, otherwise an exeption is thrown.
+   type description is returned, otherwise an exception is thrown.
 */
 css::uno::Reference< css::reflection::XInterfaceTypeDescription2 >
 resolveInterfaceTypedef(const css::uno::Reference<css::reflection::XTypeDescription>& type);
diff --git a/cppuhelper/test/testpropshlp.cxx b/cppuhelper/test/testpropshlp.cxx
index f305e28..426afd8 100644
--- a/cppuhelper/test/testpropshlp.cxx
+++ b/cppuhelper/test/testpropshlp.cxx
@@ -223,7 +223,7 @@ void test_PropertyArrayHelper()
         try
         {
             a1.getPropertyByName( OUString("never exist") );
-            OSL_FAIL( "exeption not thrown" );
+            OSL_FAIL( "exception not thrown" );
         }
         catch( UnknownPropertyException & )
         {
@@ -823,7 +823,7 @@ void test_PropertySetHelper()
             try
             {
                 xPS->addPropertyChangeListener( OUString("Does not exist"), xPS_L );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( UnknownPropertyException & /*e*/ )
             {
@@ -833,7 +833,7 @@ void test_PropertySetHelper()
             try
             {
                 xPS->addVetoableChangeListener( OUString("Does not exist"), x2 );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( UnknownPropertyException & /*e*/ )
             {
@@ -873,7 +873,7 @@ void test_PropertySetHelper()
                 Any aBool;
                 aBool.setValue( &b , getCppuBooleanType() );
                 xPS->setPropertyValue("BOOL", aBool );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( PropertyVetoException & /*e*/ )
             {
@@ -887,7 +887,7 @@ void test_PropertySetHelper()
                 aBool.setValue( &b , getCppuBooleanType() );
                 // BOOL i s0
                 pPS->setFastPropertyValue( PROPERTY_BOOL, aBool );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( PropertyVetoException & /*e*/ )
             {
@@ -900,7 +900,7 @@ void test_PropertySetHelper()
                 Any aBool;
                 aBool.setValue( &b , getCppuBooleanType() );
                 xPS->setPropertyValue("Does not exist", aBool );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( UnknownPropertyException & /*e*/ )
             {
@@ -912,7 +912,7 @@ void test_PropertySetHelper()
                 Any aBool;
                 aBool.setValue( &b , getCppuBooleanType() );
                 pPS->setFastPropertyValue( 3, aBool );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( UnknownPropertyException & /*e*/ )
             {
@@ -923,7 +923,7 @@ void test_PropertySetHelper()
             {
                 Any aBool;
                 aBool = xPS->getPropertyValue("Does not exist");
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( UnknownPropertyException & /*e*/ )
             {
@@ -933,7 +933,7 @@ void test_PropertySetHelper()
             {
                 Any aBool;
                 aBool = ((XFastPropertySet *)pPS)->getFastPropertyValue( 3 );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( UnknownPropertyException & /*e*/ )
             {
@@ -944,7 +944,7 @@ void test_PropertySetHelper()
             {
                 Any aBool;
                 xPS->setPropertyValue("INT32", aBool );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( IllegalArgumentException & /*e*/ )
             {
@@ -954,7 +954,7 @@ void test_PropertySetHelper()
             {
                 Any aBool;
                 pPS->setFastPropertyValue( PROPERTY_INT32, aBool );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( IllegalArgumentException & /*e*/ )
             {
@@ -966,7 +966,7 @@ void test_PropertySetHelper()
                 Any aINT32;
                 aINT32 <<= (sal_Int32 ) 16;
                 xPS->setPropertyValue("INT16", aINT32 );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( IllegalArgumentException & /*e*/ )
             {
@@ -978,7 +978,7 @@ void test_PropertySetHelper()
                 Any aINT32;
                 aINT32 <<= (sal_Int32) 16;
                 pPS->setFastPropertyValue( PROPERTY_INT16, aINT32 );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( IllegalArgumentException & /*e*/ )
             {
@@ -1071,7 +1071,7 @@ void test_PropertySetHelper()
             try
             {
                 ((XFastPropertySet *)pPS)->setFastPropertyValue( PROPERTY_INT16, aValue );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch( PropertyVetoException & /*e*/ )
             {
@@ -1151,7 +1151,7 @@ void test_PropertySetHelper()
                 aValues.getArray()[0] <<= (sal_Int16)44;
                 aValues.getArray()[1] <<= (sal_Int16)100;
                 pPS->setPropertyValues( szPN, aValues );
-                OSL_FAIL( "PropertySetHelper: exeption not thrown" );
+                OSL_FAIL( "PropertySetHelper: exception not thrown" );
             }
             catch ( PropertyVetoException & /*e*/ )
             {
diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx
index 3e8b396..fff1e33 100644
--- a/dbaccess/source/ui/browser/unodatbr.cxx
+++ b/dbaccess/source/ui/browser/unodatbr.cxx
@@ -2193,7 +2193,7 @@ IMPL_LINK(SbaTableQueryBrowser, OnExpandEntry, SvTreeListEntry*, _pParent)
 
                 // first insert the views because the tables can also include
                 // views but that time the bitmap is the wrong one
-                // the nameaccess will be overwriten in populateTree
+                // the nameaccess will be overwritten in populateTree
                 Reference<XViewsSupplier> xViewSup(xConnection,UNO_QUERY);
                 if(xViewSup.is())
                     populateTree( xViewSup->getViews(), _pParent, etTableOrView );
diff --git a/reportdesign/source/ui/dlg/GroupsSorting.cxx b/reportdesign/source/ui/dlg/GroupsSorting.cxx
index 8f2607f..5b3dbf2 100644
--- a/reportdesign/source/ui/dlg/GroupsSorting.cxx
+++ b/reportdesign/source/ui/dlg/GroupsSorting.cxx
@@ -1057,7 +1057,7 @@ sal_Int32 OGroupsSortingDialog::getColumnDataType(const OUString& _sColumnName)
     }
     catch(uno::Exception&)
     {
-        OSL_FAIL("Eception caught while getting the type of a column");
+        OSL_FAIL("Exception caught while getting the type of a column");
     }
 
     return nDataType;
diff --git a/sc/qa/complex/sc/CalcRTL.java b/sc/qa/complex/sc/CalcRTL.java
index a308300..3c3fdd4 100644
--- a/sc/qa/complex/sc/CalcRTL.java
+++ b/sc/qa/complex/sc/CalcRTL.java
@@ -331,7 +331,7 @@ public class CalcRTL
      * @param oldValue : the value of the property before it has been changed
      * @param newValue : the value the property has been set to
      * @param resValue : the value getPropertyValue returned for the property
-     * @param exception : the exeption thrown during the change of the property
+     * @param exception : the exception thrown during the change of the property
      */
     protected boolean checkResult(XPropertySet set, String propName,
                                   Object oldValue, Object newValue,


More information about the Libreoffice-commits mailing list