From ce6ffa0a6ea2fd2ca5cd4f913677ab2cf95ce229 Mon Sep 17 00:00:00 2001 From: Vladimir Glazounov Date: Tue, 27 May 2003 13:14:59 +0000 Subject: INTEGRATION: CWS qadev6 (1.1.8); FILE MERGED 2003/05/21 10:59:51 sg 1.1.8.1: #109819# prepare devide of runner --- qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java | 8 ++++---- qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java | 8 ++++---- qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsImporter.java | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) (limited to 'qadevOOo/tests/java/mod/_xmloff/Impress') diff --git a/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java b/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java index b2b25ee8d2dd..7ca45d7909f9 100644 --- a/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java +++ b/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java @@ -2,9 +2,9 @@ * * $RCSfile: XMLMetaImporter.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change:$Date: 2003-01-27 18:20:06 $ + * last change:$Date: 2003-05-27 14:14:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -109,7 +109,7 @@ public class XMLMetaImporter extends TestCase { protected void initialize( TestParameters tParam, PrintWriter log ) { // get a soffice factory object - SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF()); + SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF()); try { log.println( "creating an impress document" ); @@ -159,7 +159,7 @@ public class XMLMetaImporter extends TestCase { // first we write what we are intend to do to log file log.println( "creating a test environment" ); - XMultiServiceFactory xMSF = tParam.getMSF() ; + XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF() ; try { oInt = xMSF.createInstance diff --git a/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java b/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java index 7e227f7cc5e6..9a4fcb4c61b0 100644 --- a/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java +++ b/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java @@ -2,9 +2,9 @@ * * $RCSfile: XMLSettingsExporter.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change:$Date: 2003-01-27 18:20:06 $ + * last change:$Date: 2003-05-27 14:14:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -110,7 +110,7 @@ public class XMLSettingsExporter extends TestCase { * New text document created. */ protected void initialize( TestParameters tParam, PrintWriter log ) { - SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF()); + SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF()); try { log.println( "creating an impress document" ); @@ -153,7 +153,7 @@ public class XMLSettingsExporter extends TestCase { public synchronized TestEnvironment createTestEnvironment (TestParameters tParam, PrintWriter log ) throws StatusException { - XMultiServiceFactory xMSF = tParam.getMSF(); + XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF(); XInterface oObj = null; FilterChecker filter = new FilterChecker(log); Any arg = new Any(new Type(XDocumentHandler.class),filter); diff --git a/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsImporter.java b/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsImporter.java index 79dd104d2cfc..7bc46ded0c6c 100644 --- a/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsImporter.java +++ b/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsImporter.java @@ -2,9 +2,9 @@ * * $RCSfile: XMLSettingsImporter.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change:$Date: 2003-01-27 18:20:06 $ + * last change:$Date: 2003-05-27 14:14:59 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -111,7 +111,7 @@ public class XMLSettingsImporter extends TestCase { protected void initialize( TestParameters tParam, PrintWriter log ) { // get a soffice factory object - SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF()); + SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF()); try { log.println( "creating an impress document" ); @@ -161,7 +161,7 @@ public class XMLSettingsImporter extends TestCase { // first we write what we are intend to do to log file log.println( "creating a test environment" ); - XMultiServiceFactory xMSF = tParam.getMSF() ; + XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF() ; try { oInt = xMSF.createInstance -- cgit