summaryrefslogtreecommitdiff
path: root/javaunohelper
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-15 05:34:02 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-15 05:34:02 +0200
commit70e4329d0479305f16158a63878f335ee9232a5e (patch)
treede3e471ad7764d08daf0fdd1df88f3b184de12d6 /javaunohelper
parentc32b6be06bf5453d82d9aad64aed5f384c9d1d1f (diff)
fdo#60724 successfull -> successful
Change-Id: I287bef5b7f2baf5aaaab47141267ae2cadfe2451
Diffstat (limited to 'javaunohelper')
-rw-r--r--javaunohelper/com/sun/star/comp/helper/SharedLibraryLoader.java4
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java10
2 files changed, 7 insertions, 7 deletions
diff --git a/javaunohelper/com/sun/star/comp/helper/SharedLibraryLoader.java b/javaunohelper/com/sun/star/comp/helper/SharedLibraryLoader.java
index a9cfe46e7d8f..c7e3ded8f9af 100644
--- a/javaunohelper/com/sun/star/comp/helper/SharedLibraryLoader.java
+++ b/javaunohelper/com/sun/star/comp/helper/SharedLibraryLoader.java
@@ -124,7 +124,7 @@ public class SharedLibraryLoader {
/**
* Registers the SharedLibraryLoader under a RegistryKey.
* <p>
- * @return true if the registration was successfull - otherwise false
+ * @return true if the registration was successful - otherwise false
* @param smgr the ServiceManager
* @param regKey the root key under that the component should be registered
* @see com.sun.star.loader.SharedLibrary
@@ -143,7 +143,7 @@ public class SharedLibraryLoader {
/**
* Registers the SharedLibraryLoader under a RegistryKey.
* <p>
- * @return true if the registration was successfull - otherwise false
+ * @return true if the registration was successful - otherwise false
* @param libName name of the shared library
* @param smgr the ServiceManager
* @param regKey the root key under that the component should be registered
diff --git a/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java b/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
index a5ec301492e2..3fd5f8cfc0fd 100644
--- a/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
+++ b/javaunohelper/test/com/sun/star/comp/helper/SharedLibraryLoader_Test.java
@@ -48,7 +48,7 @@ public class SharedLibraryLoader_Test {
sharedLibraryLoaderFactory = SharedLibraryLoader.getServiceFactory(null, null);
System.out.print("Test - ");
- System.out.println(sharedLibraryLoaderFactory == null? "failed" : "successfull");
+ System.out.println(sharedLibraryLoaderFactory == null? "failed" : "successful");
System.out.println("*******************************************************************");
System.out.println();
@@ -69,7 +69,7 @@ public class SharedLibraryLoader_Test {
XImplementationLoader.class, sharedLibraryLoaderFactory.createInstance() );
System.out.print("Test - ");
- System.out.println(sharedLibraryLoader == null? "failed" : "successfull");
+ System.out.println(sharedLibraryLoader == null? "failed" : "successful");
System.out.println("*******************************************************************");
System.out.println();
@@ -96,7 +96,7 @@ public class SharedLibraryLoader_Test {
nativeServiceManager = UnoRuntime.queryInterface( XMultiServiceFactory.class, aSMgrFac.createInstance() );
System.out.print("Test - ");
- System.out.println(nativeServiceManager == null? "failed" : "successfull");
+ System.out.println(nativeServiceManager == null? "failed" : "successful");
System.out.println("*******************************************************************");
System.out.println();
@@ -122,7 +122,7 @@ public class SharedLibraryLoader_Test {
simpleRegistry =
UnoRuntime.queryInterface( XSimpleRegistry.class, aRegFac.createInstance() );
System.out.print("Test - ");
- System.out.println(simpleRegistry == null? "failed" : "successfull");
+ System.out.println(simpleRegistry == null? "failed" : "successful");
System.out.println("*******************************************************************");
System.err.println();
return true;
@@ -143,7 +143,7 @@ public class SharedLibraryLoader_Test {
result = SharedLibraryLoader.writeRegistryServiceInfo( null, regKey );
System.out.print("Test - ");
- System.out.println( result==false ? "failed" : "successfull");
+ System.out.println( result==false ? "failed" : "successful");
System.out.println("*******************************************************************");
System.out.println();
return result;