[Libreoffice-commits] core.git: basic/source qadevOOo/runner rsc/source sal/qa scripting/java stoc/source stoc/test svl/source udkapi/com unotools/source

Julien Nabet serval2412 at yahoo.fr
Sat Feb 23 08:31:27 PST 2013


 basic/source/classes/sbunoobj.cxx                                         |   10 +++++-----
 qadevOOo/runner/convwatch/ConvWatch.java                                  |    2 +-
 qadevOOo/runner/convwatch/ConvWatchStarter.java                           |    4 ++--
 qadevOOo/runner/convwatch/DocumentConverter.java                          |    4 ++--
 qadevOOo/runner/convwatch/EnhancedComplexTestCase.java                    |    2 +-
 qadevOOo/runner/convwatch/GfxCompare.java                                 |    4 ++--
 qadevOOo/runner/convwatch/ReferenceBuilder.java                           |    4 ++--
 qadevOOo/runner/helper/URLHelper.java                                     |    2 +-
 rsc/source/rscpp/cpp3.c                                                   |    2 +-
 sal/qa/helper/gcov/deprecated.txt                                         |    2 +-
 scripting/java/com/sun/star/script/framework/provider/ScriptProvider.java |    2 +-
 stoc/source/invocation/invocation.cxx                                     |    4 ++--
 stoc/test/testcorefl.cxx                                                  |    2 +-
 svl/source/numbers/supservs.hxx                                           |    2 +-
 udkapi/com/sun/star/reflection/TypeDescriptionManager.idl                 |    2 +-
 udkapi/com/sun/star/script/XInvocation2.idl                               |    6 +++---
 unotools/source/config/cmdoptions.cxx                                     |    2 +-
 unotools/source/config/compatibility.cxx                                  |    2 +-
 unotools/source/config/dynamicmenuoptions.cxx                             |    2 +-
 19 files changed, 30 insertions(+), 30 deletions(-)

New commits:
commit 94477cb5fb6e982035867b198eee7cfa8622c5e3
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Sat Feb 23 17:29:22 2013 +0100

    Fix typo accessable/accessible
    
    Change-Id: I2f6d00a6361243a52a593acaaf2bf624d8a2730e

diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index d773965..77adc0b 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -178,12 +178,12 @@ Reference< XIdlReflection > getCoreReflection_Impl( void )
             xContext->getValueByName(
                 OUString( "/singletons/com.sun.star.reflection.theCoreReflection" ) )
                     >>= xCoreReflection;
-            OSL_ENSURE( xCoreReflection.is(), "### CoreReflection singleton not accessable!?" );
+            OSL_ENSURE( xCoreReflection.is(), "### CoreReflection singleton not accessible!?" );
         }
         if( !xCoreReflection.is() )
         {
             throw DeploymentException(
-                OUString( "/singletons/com.sun.star.reflection.theCoreReflection singleton not accessable" ),
+                OUString( "/singletons/com.sun.star.reflection.theCoreReflection singleton not accessible" ),
                 Reference< XInterface >() );
         }
     }
@@ -222,12 +222,12 @@ Reference< XHierarchicalNameAccess > getTypeProvider_Impl( void )
             xContext->getValueByName(
                 OUString( "/singletons/com.sun.star.reflection.theTypeDescriptionManager" ) )
                     >>= xAccess;
-            OSL_ENSURE( xAccess.is(), "### TypeDescriptionManager singleton not accessable!?" );
+            OSL_ENSURE( xAccess.is(), "### TypeDescriptionManager singleton not accessible!?" );
         }
         if( !xAccess.is() )
         {
             throw DeploymentException(
-                    OUString("/singletons/com.sun.star.reflection.theTypeDescriptionManager singleton not accessable"),
+                    OUString("/singletons/com.sun.star.reflection.theTypeDescriptionManager singleton not accessible"),
                 Reference< XInterface >() );
         }
     }
@@ -251,7 +251,7 @@ Reference< XTypeConverter > getTypeConverter_Impl( void )
         if( !xTypeConverter.is() )
         {
             throw DeploymentException(
-                OUString("com.sun.star.script.Converter service not accessable"),
+                OUString("com.sun.star.script.Converter service not accessible"),
                 Reference< XInterface >() );
         }
     }
diff --git a/qadevOOo/runner/convwatch/ConvWatch.java b/qadevOOo/runner/convwatch/ConvWatch.java
index b117d57..60a475f 100644
--- a/qadevOOo/runner/convwatch/ConvWatch.java
+++ b/qadevOOo/runner/convwatch/ConvWatch.java
@@ -42,7 +42,7 @@ public class ConvWatch
     }
     /**
      * Check if given document (_sAbsoluteInputFile) and it's postscript representation (_sAbsoluteReferenceFile) produce
-     * the same output like the StarOffice / OpenOffice.org which is accessable with XMultiServiceFactory.
+     * the same output like the StarOffice / OpenOffice.org which is accessible with XMultiServiceFactory.
      * Here a simple graphically difference check is run through.
      *
      * Hint: In the OutputPath all needed files will create, there must
diff --git a/qadevOOo/runner/convwatch/ConvWatchStarter.java b/qadevOOo/runner/convwatch/ConvWatchStarter.java
index f5034bd..5e1e095 100644
--- a/qadevOOo/runner/convwatch/ConvWatchStarter.java
+++ b/qadevOOo/runner/convwatch/ConvWatchStarter.java
@@ -147,7 +147,7 @@ public class ConvWatchStarter extends EnhancedComplexTestCase
 
     /**
      *
-     * @return a List of software which must accessable as an external executable
+     * @return a List of software which must accessible as an external executable
      */
     protected String[] mustInstalledSoftware()
         {
@@ -184,7 +184,7 @@ public class ConvWatchStarter extends EnhancedComplexTestCase
         {
             GlobalLogWriter.set(log);
             String sDBConnection = (String)param.get( PropertyName.DB_CONNECTION_STRING );
-            // check if all need software is installed and accessable
+            // check if all need software is installed and accessible
             checkEnvironment(mustInstalledSoftware());
 
             GraphicalTestArguments aGTA = getGraphicalTestArguments();
diff --git a/qadevOOo/runner/convwatch/DocumentConverter.java b/qadevOOo/runner/convwatch/DocumentConverter.java
index 821006d..9c68edb 100644
--- a/qadevOOo/runner/convwatch/DocumentConverter.java
+++ b/qadevOOo/runner/convwatch/DocumentConverter.java
@@ -125,7 +125,7 @@ public class DocumentConverter extends EnhancedComplexTestCase
         }
 
     /**
-     * Function returns a List of software which must accessable as an external executable
+     * Function returns a List of software which must accessible as an external executable
      */
     protected String[] mustInstalledSoftware()
         {
@@ -138,7 +138,7 @@ public class DocumentConverter extends EnhancedComplexTestCase
     public void convert()
         {
             GlobalLogWriter.set(log);
-            // check if all need software is installed and accessable
+            // check if all need software is installed and accessible
             checkEnvironment(mustInstalledSoftware());
 
             // test_removeFirstDirectorysAndBasenameFrom();
diff --git a/qadevOOo/runner/convwatch/EnhancedComplexTestCase.java b/qadevOOo/runner/convwatch/EnhancedComplexTestCase.java
index 3257d13..b3d5eb9 100644
--- a/qadevOOo/runner/convwatch/EnhancedComplexTestCase.java
+++ b/qadevOOo/runner/convwatch/EnhancedComplexTestCase.java
@@ -51,7 +51,7 @@ public abstract class EnhancedComplexTestCase extends ComplexTestCase
 
             if (sText.length() == 0)
             {
-                String sError = "Must quit. " + _sName + " may be not accessable.";
+                String sError = "Must quit. " + _sName + " may be not accessible.";
                 assure(sError, false);
                 // System.exit(1);
             }
diff --git a/qadevOOo/runner/convwatch/GfxCompare.java b/qadevOOo/runner/convwatch/GfxCompare.java
index 44f766e..6fe7672 100644
--- a/qadevOOo/runner/convwatch/GfxCompare.java
+++ b/qadevOOo/runner/convwatch/GfxCompare.java
@@ -51,7 +51,7 @@ public class GfxCompare extends EnhancedComplexTestCase
 
     /**
      *
-     * @return a List of software which must accessable as an external executable
+     * @return a List of software which must accessible as an external executable
      */
     protected String[] mustInstalledSoftware()
         {
@@ -77,7 +77,7 @@ public class GfxCompare extends EnhancedComplexTestCase
         {
             GlobalLogWriter.set(log);
 
-            // check if all need software is installed and accessable
+            // check if all need software is installed and accessible
             checkEnvironment(mustInstalledSoftware());
 
             m_aArguments = getGraphicalTestArguments();
diff --git a/qadevOOo/runner/convwatch/ReferenceBuilder.java b/qadevOOo/runner/convwatch/ReferenceBuilder.java
index 69d11f3..6f17598 100644
--- a/qadevOOo/runner/convwatch/ReferenceBuilder.java
+++ b/qadevOOo/runner/convwatch/ReferenceBuilder.java
@@ -124,7 +124,7 @@ public class ReferenceBuilder extends EnhancedComplexTestCase
         }
 
     /**
-     * Function returns a List of software which must accessable as an external executable
+     * Function returns a List of software which must accessible as an external executable
      */
     protected String[] mustInstalledSoftware()
         {
@@ -137,7 +137,7 @@ public class ReferenceBuilder extends EnhancedComplexTestCase
             GlobalLogWriter.set(log);
             String sDBConnection = (String)param.get( PropertyName.DB_CONNECTION_STRING );
 
-            // check if all need software is installed and accessable
+            // check if all need software is installed and accessible
             checkEnvironment(mustInstalledSoftware());
 
             // test_removeFirstDirectorysAndBasenameFrom();
diff --git a/qadevOOo/runner/helper/URLHelper.java b/qadevOOo/runner/helper/URLHelper.java
index 57b8d63..39cd8dc 100644
--- a/qadevOOo/runner/helper/URLHelper.java
+++ b/qadevOOo/runner/helper/URLHelper.java
@@ -238,7 +238,7 @@ public class URLHelper
      *
      * @return  [Vector]
      *              a filtered list of java File objects of all available files of the start dir
-     *              and all accessable sub directories.
+     *              and all accessible sub directories.
      */
     public static ArrayList<File> getSystemFilesFromDir(String sStartDir)
     {
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c
index f5fc8e1..05c3422 100644
--- a/rsc/source/rscpp/cpp3.c
+++ b/rsc/source/rscpp/cpp3.c
@@ -549,7 +549,7 @@ char            **argv;
                             break;      /* Exit case statement  */
                         perror(ap);     /* Error, can't append  */
                         exit(errno);    /* After access test    */
-                    }                   /* If file accessable   */
+                    }                   /* If file accessible   */
                 }
                 /*
                  * On vms, we want to create the file using "standard"
diff --git a/sal/qa/helper/gcov/deprecated.txt b/sal/qa/helper/gcov/deprecated.txt
index 38b0780..9370ef1 100644
--- a/sal/qa/helper/gcov/deprecated.txt
+++ b/sal/qa/helper/gcov/deprecated.txt
@@ -206,7 +206,7 @@
 
 # LLA:
 # marked as deprecated, due to the fact there is no access from outside
-# so this functions are not really accessable
+# so this functions are not really accessible
 # They are used in rtl/source/locale.c
         rtl_hashentry_destroy;
         rtl_hashfunc;
diff --git a/scripting/java/com/sun/star/script/framework/provider/ScriptProvider.java b/scripting/java/com/sun/star/script/framework/provider/ScriptProvider.java
index c52497c..e1d044c 100644
--- a/scripting/java/com/sun/star/script/framework/provider/ScriptProvider.java
+++ b/scripting/java/com/sun/star/script/framework/provider/ScriptProvider.java
@@ -349,7 +349,7 @@ public abstract class ScriptProvider
 
     // TODO need to encapsulate this better,
     // Some factory concept for creating/accessing Editor
-    // How this is passed down or how it is accessable by BrowseNode
+    // How this is passed down or how it is accessible by BrowseNode
     // implementations needs thinking about
     // This method is used to determine whether the ScriptProvider
     // has a ScriptEditor
diff --git a/stoc/source/invocation/invocation.cxx b/stoc/source/invocation/invocation.cxx
index 5445173..f1d8c2b 100644
--- a/stoc/source/invocation/invocation.cxx
+++ b/stoc/source/invocation/invocation.cxx
@@ -1111,11 +1111,11 @@ InvocationService::InvocationService( const Reference<XComponentContext> & xCtx
         OUString(
             RTL_CONSTASCII_USTRINGPARAM("/singletons/com.sun.star.reflection.theCoreReflection")) )
                 >>= xCoreReflection;
-    OSL_ENSURE( xCoreReflection.is(), "### CoreReflection singleton not accessable!?" );
+    OSL_ENSURE( xCoreReflection.is(), "### CoreReflection singleton not accessible!?" );
     if (! xCoreReflection.is())
     {
         throw DeploymentException(
-            OUString( RTL_CONSTASCII_USTRINGPARAM("/singletons/com.sun.star.reflection.theCoreReflection singleton not accessable") ),
+            OUString( RTL_CONSTASCII_USTRINGPARAM("/singletons/com.sun.star.reflection.theCoreReflection singleton not accessible") ),
             Reference< XInterface >() );
     }
 //         xCoreReflection = Reference<XIdlReflection>(
diff --git a/stoc/test/testcorefl.cxx b/stoc/test/testcorefl.cxx
index 4a1313f..55f303b 100644
--- a/stoc/test/testcorefl.cxx
+++ b/stoc/test/testcorefl.cxx
@@ -373,7 +373,7 @@ SAL_IMPLEMENT_MAIN()
             OUString( "/singletons/com.sun.star.reflection.theCoreReflection") )
                         >>= xRefl;
         OSL_ENSURE(
-            xRefl.is(), "### CoreReflection singleton not accessable!?" );
+            xRefl.is(), "### CoreReflection singleton not accessible!?" );
 
         bSucc = test_corefl( xRefl );
 
diff --git a/svl/source/numbers/supservs.hxx b/svl/source/numbers/supservs.hxx
index efaa79f..3d4cf29 100644
--- a/svl/source/numbers/supservs.hxx
+++ b/svl/source/numbers/supservs.hxx
@@ -39,7 +39,7 @@ class SvNumberFormatsSupplierServiceObject
             ,public ::com::sun::star::lang::XInitialization
             ,public ::com::sun::star::io::XPersistObject
             ,public ::com::sun::star::lang::XServiceInfo
-{   // don't want the Set-/GetNumberFormatter to be accessable from outside
+{   // don't want the Set-/GetNumberFormatter to be accessible from outside
 
     friend ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
         SAL_CALL SvNumberFormatsSupplierServiceObject_CreateInstance(
diff --git a/udkapi/com/sun/star/reflection/TypeDescriptionManager.idl b/udkapi/com/sun/star/reflection/TypeDescriptionManager.idl
index 467047a..11598d6 100644
--- a/udkapi/com/sun/star/reflection/TypeDescriptionManager.idl
+++ b/udkapi/com/sun/star/reflection/TypeDescriptionManager.idl
@@ -35,7 +35,7 @@
     <type scope="com::sun::star::reflection">TypeDescriptionProvider</type>s
     and may cache type descriptions.<br>
     Using cppuhelper's bootstrapping routines bootstrapping an initial
-    component context, there is a singleton accessable via key
+    component context, there is a singleton accessible via key
     "/singletons/com.sun.star.reflection.theTypeDescriptionManager".
     This singleton object is hooked into the C UNO runtime typelib and
     lives until the context is shut down.<br>
diff --git a/udkapi/com/sun/star/script/XInvocation2.idl b/udkapi/com/sun/star/script/XInvocation2.idl
index be23e0d..4d3eb61 100644
--- a/udkapi/com/sun/star/script/XInvocation2.idl
+++ b/udkapi/com/sun/star/script/XInvocation2.idl
@@ -29,17 +29,17 @@
 
 /**
     Extension of XInvocation to provide additional information
-    about the methods and properties that are accessable via
+    about the methods and properties that are accessible via
     XInvocation.
     </p>
  */
 published interface XInvocation2: com::sun::star::script::XInvocation
 {
-    /** returns the names of all methods and properties accessable via XInvocation.
+    /** returns the names of all methods and properties accessible via XInvocation.
      */
     sequence< string > getMemberNames();
 
-    /** returns information items for all methods and properties accessable via XInvocation.
+    /** returns information items for all methods and properties accessible via XInvocation.
 
         @see com::sun::star::script::Invocation
      */
diff --git a/unotools/source/config/cmdoptions.cxx b/unotools/source/config/cmdoptions.cxx
index afd6fd8..81f41fe 100644
--- a/unotools/source/config/cmdoptions.cxx
+++ b/unotools/source/config/cmdoptions.cxx
@@ -208,7 +208,7 @@ SvtCommandOptions_Impl::SvtCommandOptions_Impl()
     :   ConfigItem( ROOTNODE_CMDOPTIONS )
     // Init member then...
 {
-    // Get names and values of all accessable menu entries and fill internal structures.
+    // Get names and values of all accessible menu entries and fill internal structures.
     // See impl_GetPropertyNames() for further informations.
     Sequence< OUString >    lNames              = impl_GetPropertyNames ();
     Sequence< Any >         lValues             = GetProperties         ( lNames         );
diff --git a/unotools/source/config/compatibility.cxx b/unotools/source/config/compatibility.cxx
index e5079a9..21c97d3 100644
--- a/unotools/source/config/compatibility.cxx
+++ b/unotools/source/config/compatibility.cxx
@@ -365,7 +365,7 @@ SvtCompatibilityOptions_Impl::SvtCompatibilityOptions_Impl()
     :   ConfigItem( ROOTNODE_OPTIONS )
     // Init member then...
 {
-    // Get names and values of all accessable menu entries and fill internal structures.
+    // Get names and values of all accessible menu entries and fill internal structures.
     // See impl_GetPropertyNames() for further informations.
     Sequence< OUString > lNodes;
     Sequence< OUString > lNames = impl_GetPropertyNames( lNodes );
diff --git a/unotools/source/config/dynamicmenuoptions.cxx b/unotools/source/config/dynamicmenuoptions.cxx
index aedd014..a628a0a 100644
--- a/unotools/source/config/dynamicmenuoptions.cxx
+++ b/unotools/source/config/dynamicmenuoptions.cxx
@@ -350,7 +350,7 @@ SvtDynamicMenuOptions_Impl::SvtDynamicMenuOptions_Impl()
     :   ConfigItem( ROOTNODE_MENUS )
     // Init member then...
 {
-    // Get names and values of all accessable menu entries and fill internal structures.
+    // Get names and values of all accessible menu entries and fill internal structures.
     // See impl_GetPropertyNames() for further informations.
     sal_uInt32              nNewCount           = 0;
     sal_uInt32              nWizardCount        = 0;


More information about the Libreoffice-commits mailing list