diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-04 10:16:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-04 11:51:49 +0100 |
commit | 8f50196ef1ba0cc03904e18cc5b034074f92aa4e (patch) | |
tree | c9017c639553c4e2a7e6a394a649ad14659c7e8d /qadevOOo | |
parent | a1e4bd413e7a8e4db454d65e5226b9d1859bd5d7 (diff) |
*_AppDispatchProvider_get_implementation cannot bypass XInitialization
...as SfxAppDispatchProvider implements new-style service
css.frame.AppDispatchProvider that doesn't declare any non-default ctors (which
looks broken, though) and old-style service css.frame.DispatchProvicer.
(And fix the test code to pass in meaningful XInitialization arguments.)
Change-Id: Ifcc32d17f6b96ade2acc40ccdb60f7bad2d503a4
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/mod/_sfx/AppDispatchProvider.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qadevOOo/tests/java/mod/_sfx/AppDispatchProvider.java b/qadevOOo/tests/java/mod/_sfx/AppDispatchProvider.java index 8a56c10298d1..84664a9122ad 100644 --- a/qadevOOo/tests/java/mod/_sfx/AppDispatchProvider.java +++ b/qadevOOo/tests/java/mod/_sfx/AppDispatchProvider.java @@ -88,6 +88,8 @@ public class AppDispatchProvider extends TestCase { // adding relation for :XDispatchProvider tEnv.addObjRelation("XDispatchProvider.URL", ".uno:BibliographyComponent") ; + tEnv.addObjRelation("XInitialization.args", new Object[] { null }); + return tEnv; } // finish method getTestEnvironment |