summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-09-10 21:13:38 +0200
committerMiklos Vajna <vmiklos@collabora.com>2020-09-11 09:03:31 +0200
commit72b5478390457fa2dcf90e310bb3903e910ca8f2 (patch)
tree985201b7d2fc03a67422a7ce214c139adeb7f531 /qadevOOo
parentdb7a5861b2c42a56aa56af0bee1e9c5b06faee99 (diff)
xmloff: remove dead com.sun.star.comp.Draw.XMLContentExporter
And test com.sun.star.comp.Draw.XMLOasisContentExporter instead in JunitTest_xmloff_unoapi. Change-Id: I22bf816d08bcd04b277e461a5055883b730811b4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102401 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java
index 98992f53ce5b..e0e26b710920 100644
--- a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java
+++ b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java
@@ -42,7 +42,7 @@ import com.sun.star.xml.sax.XDocumentHandler;
/**
* Test for object which is represented by service
- * <code>com.sun.star.comp.Draw.XMLContentExporter</code>. <p>
+ * <code>com.sun.star.comp.Draw.XMLOasisContentExporter</code>. <p>
* Object implements the following interfaces :
* <ul>
* <li><code>com::sun::star::lang::XInitialization</code></li>
@@ -88,7 +88,7 @@ public class XMLContentExporter extends TestCase {
/**
* Creating a TestEnvironment for the interfaces to be tested.
* Creates an instance of the service
- * <code>com.sun.star.comp.Draw.XMLContentExporter</code> with
+ * <code>com.sun.star.comp.Draw.XMLOasisContentExporter</code> with
* argument which is an implementation of <code>XDocumentHandler</code>
* and which can check if required tags and character data is
* exported. <p>
@@ -125,7 +125,7 @@ public class XMLContentExporter extends TestCase {
filter.addTag(new XMLTools.Tag("draw:page","draw:name","NewSlide2"));
oObj = (XInterface) xMSF.createInstanceWithArguments(
- "com.sun.star.comp.Draw.XMLContentExporter",
+ "com.sun.star.comp.Draw.XMLOasisContentExporter",
new Object[] {arg});
XExporter xEx = UnoRuntime.queryInterface(XExporter.class,oObj);