diff options
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r-- | qadevOOo/runner/convwatch/OfficePrint.java | 6 | ||||
-rw-r--r-- | qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java | 6 | ||||
-rw-r--r-- | qadevOOo/runner/util/FormTools.java | 8 | ||||
-rw-r--r-- | qadevOOo/runner/util/SOfficeFactory.java | 10 |
4 files changed, 15 insertions, 15 deletions
diff --git a/qadevOOo/runner/convwatch/OfficePrint.java b/qadevOOo/runner/convwatch/OfficePrint.java index 2f579c95474d..d8f867b89d76 100644 --- a/qadevOOo/runner/convwatch/OfficePrint.java +++ b/qadevOOo/runner/convwatch/OfficePrint.java @@ -233,7 +233,7 @@ public class OfficePrint { } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED GlobalLogWriter.get().println("UNO Exception caught."); GlobalLogWriter.get().println("Message: " + e.getMessage()); e.printStackTrace(); @@ -554,7 +554,7 @@ public class OfficePrint { } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED GlobalLogWriter.get().println("UNO Exception caught."); GlobalLogWriter.get().println("Message: " + e.getMessage()); @@ -707,7 +707,7 @@ public class OfficePrint { } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED GlobalLogWriter.get().println("UNO Exception caught."); GlobalLogWriter.get().println("Message: " + e.getMessage()); diff --git a/qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java b/qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java index 154594ad8c67..f6529df66a36 100644 --- a/qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java +++ b/qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java @@ -280,7 +280,7 @@ public class OpenOfficePostscriptCreator implements IOffice } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED GlobalLogWriter.println("UNO Exception caught."); GlobalLogWriter.println("Message: " + e.getMessage()); e.printStackTrace(); @@ -522,7 +522,7 @@ public class OpenOfficePostscriptCreator implements IOffice } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED GlobalLogWriter.println("UNO Exception caught."); GlobalLogWriter.println("Message: " + e.getMessage()); @@ -680,7 +680,7 @@ public class OpenOfficePostscriptCreator implements IOffice } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED GlobalLogWriter.println("UNO Exception caught."); GlobalLogWriter.println("Message: " + e.getMessage()); diff --git a/qadevOOo/runner/util/FormTools.java b/qadevOOo/runner/util/FormTools.java index 19d53f60f7c9..9b6a3ae6db6d 100644 --- a/qadevOOo/runner/util/FormTools.java +++ b/qadevOOo/runner/util/FormTools.java @@ -81,7 +81,7 @@ public class FormTools { oCShape.setSize(size); oCShape.setPosition(position); } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println( "Couldn't create instance "+ e ); } @@ -117,7 +117,7 @@ public class FormTools { } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println( "Couldn't create instance "+ e ); } @@ -152,7 +152,7 @@ public class FormTools { } catch ( com.sun.star.uno.Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println( "Couldn't create instance "+ e ); } @@ -171,7 +171,7 @@ public class FormTools { oControl = (XInterface) oDocMSF.createInstance( "com.sun.star.form.component."+kind); } catch ( Exception e ) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println( "Couldn't create instance "+ kind + ": "+ e ); } return oControl; diff --git a/qadevOOo/runner/util/SOfficeFactory.java b/qadevOOo/runner/util/SOfficeFactory.java index d90fdfca7587..2a0f0ed0fc22 100644 --- a/qadevOOo/runner/util/SOfficeFactory.java +++ b/qadevOOo/runner/util/SOfficeFactory.java @@ -438,7 +438,7 @@ public class SOfficeFactory { oInterface = (XInterface) oDocMSF.createInstance("com.sun.star.chart." + kind); oDiagram = UnoRuntime.queryInterface(XDiagram.class, oInterface); } catch (Exception e) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println("Couldn't create " + kind + "-Diagram " + e); } return oDiagram; @@ -456,7 +456,7 @@ public class SOfficeFactory { try { oControl = (XInterface) oDocMSF.createInstance("com.sun.star.form.component." + kind); } catch (Exception e) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println("Couldn't create instance " + kind + ": " + e); } return oControl; @@ -474,7 +474,7 @@ public class SOfficeFactory { try { oInstance = oDocMSF.createInstance(kind); } catch (Exception e) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println("Couldn't create instance " + kind + ": " + e); } return oInstance; @@ -504,14 +504,14 @@ public class SOfficeFactory { } catch (Exception e) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println("Couldn't create instance " + e); } try { oCShape.setControl(aControl); } catch (Exception e) { - // Some exception occures.FAILED + // Some exception occurs.FAILED System.out.println("Couldn't get Control " + e); } |