summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-08-13 21:53:22 +0200
committerMiklos Vajna <vmiklos@collabora.com>2020-08-14 08:40:49 +0200
commitb8285ae5133cd74df6930ada54bf12bdd22fce36 (patch)
treed58b7c6f51ee66c2a8f8db8e2673f532e7f3f217 /qadevOOo
parent1aa46b95bf8fe87c73b657b9ea226318399ace14 (diff)
xmloff: remove dead com.sun.star.comp.Draw.XMLMetaExporter
And test com.sun.star.comp.Draw.XMLOasisMetaExporter instead in JunitTest_xmloff_unoapi. Change-Id: I1cd485378097b094e6773a7c37798b9aadf3070f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100687 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java
index 8a731cfcdfa7..0e2835d41570 100644
--- a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java
+++ b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java
@@ -40,7 +40,7 @@ import com.sun.star.xml.sax.XDocumentHandler;
/**
* Test for object which is represented by service
- * <code>com.sun.star.comp.Draw.XMLMetaExporter</code>. <p>
+ * <code>com.sun.star.comp.Draw.XMLOasisMetaExporter</code>. <p>
* Object implements the following interfaces :
* <ul>
* <li><code>com::sun::star::lang::XInitialization</code></li>
@@ -88,7 +88,7 @@ public class XMLMetaExporter extends TestCase {
/**
* Creating a TestEnvironment for the interfaces to be tested.
* Creates an instance of the service
- * <code>com.sun.star.comp.Draw.XMLMetaExporter</code> with
+ * <code>com.sun.star.comp.Draw.XMLOasisMetaExporter</code> with
* argument which is an implementation of <code>XDocumentHandler</code>
* and which can check if required tags and character data is
* exported. <p>
@@ -118,7 +118,7 @@ public class XMLMetaExporter extends TestCase {
Any arg = new Any(new Type(XDocumentHandler.class),filter);
oObj = (XInterface) xMSF.createInstanceWithArguments(
- "com.sun.star.comp.Draw.XMLMetaExporter", new Object[] {arg});
+ "com.sun.star.comp.Draw.XMLOasisMetaExporter", new Object[] {arg});
XExporter xEx = UnoRuntime.queryInterface(XExporter.class, oObj);
xEx.setSourceDocument(xDrawDoc);