summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/utils.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util/utils.java')
-rw-r--r--qadevOOo/runner/util/utils.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/runner/util/utils.java b/qadevOOo/runner/util/utils.java
index 3ec523e32fec..d555452ff4ee 100644
--- a/qadevOOo/runner/util/utils.java
+++ b/qadevOOo/runner/util/utils.java
@@ -81,7 +81,7 @@ public class utils {
String pthSep = System.getProperty("file.separator");
- if (docpth.equals("unkown")) {
+ if (docpth.equals("unknown")) {
System.out.println("try to get tDoc from $SRC_ROOT/qadevOOo");
String srcRoot = System.getProperty(PropertyName.SRC_ROOT);
if (srcRoot != null) {
@@ -108,7 +108,7 @@ public class utils {
}
String testdocPth = "";
- if (docpth.equals("unkown")) {
+ if (docpth.equals("unknown")) {
System.out.println("try to get tDoc from OBJDSCS");
String objdscPth = System.getProperty("OBJDSCS");
if (objdscPth != null) {
@@ -549,7 +549,7 @@ public class utils {
}
/**
- * Copies file to a new location using SOffice features. If the target
+ * Copies file to a new location using OpenOffice.org features. If the target
* file already exists, the file is deleted.
*
* @returns <code>true</code> if the file was successfully copied,
@@ -571,7 +571,7 @@ public class utils {
} catch (com.sun.star.ucb.InteractiveAugmentedIOException e) {
return false;
} catch (com.sun.star.uno.Exception e) {
- System.out.println("Couldn't create a service.");
+ System.out.println("Couldn't copy " + oldF + " to " + newF + ".");
e.printStackTrace();
}
@@ -909,7 +909,7 @@ public class utils {
* @return unxsols, unxsoli, unxlngi, wntmsci
*/
public static String getOfficeOS(XMultiServiceFactory xMSF) {
- String platform = "unkown";
+ String platform = "unknown";
try {
String theOS = expandMacro(xMSF, "$_OS");