diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-09-03 21:35:16 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-09-04 09:11:39 +0200 |
commit | 739ce73e9957fa1f553f3246e5ed67de0f3eb47f (patch) | |
tree | ed871165dc696e7a21aba4f70973202df5469eaf /qadevOOo | |
parent | 1d203d95479d16049c2edb6fa6fc927c1d97067f (diff) |
xmloff: remove dead com.sun.star.comp.Draw.XMLStylesExporter
And test com.sun.star.comp.Draw.XMLOasisSettingsExporter instead in
JunitTest_xmloff_unoapi. Note that the test code is also dead at the moment,
because xmloff/qa/unoapi/xmloff.sce disables the
xmloff.Draw.XMLSettingsExporter line, but let's not regress even more in that
code.
Change-Id: I04eb38aad193dfbfde5df42f3e367aa47dfd12ab
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102019
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java index b139fff75ac9..2fbf238ca67c 100644 --- a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java +++ b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.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.XMLStylesExporter</code>. <p> + * <code>com.sun.star.comp.Draw.XMLOasisStylesExporter</code>. <p> * Object implements the following interfaces : * <ul> * <li><code>com::sun::star::lang::XInitialization</code></li> @@ -91,7 +91,7 @@ public class XMLStylesExporter extends TestCase { /** * Creating a TestEnvironment for the interfaces to be tested. * Creates an instance of the service - * <code>com.sun.star.comp.Draw.XMLStylesExporter</code> with + * <code>com.sun.star.comp.Draw.XMLOasisStylesExporter</code> with * argument which is an implementation of <code>XDocumentHandler</code> * and which can check if required tags and character data is * exported. <p> @@ -121,7 +121,7 @@ public class XMLStylesExporter extends TestCase { final String STYLE_NAME = "New style" + counter++ ; oObj = (XInterface) xMSF.createInstanceWithArguments( - "com.sun.star.comp.Draw.XMLStylesExporter", new Object[] {arg}); + "com.sun.star.comp.Draw.XMLOasisStylesExporter", new Object[] {arg}); XExporter xEx = UnoRuntime.queryInterface(XExporter.class,oObj); xEx.setSourceDocument(xDrawDoc); |