diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-29 13:13:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-29 13:14:58 +0200 |
commit | 610cfb377161a84f24c9022fc04cf7cb55d74ea9 (patch) | |
tree | f37315822034ee6520b0fff7a144edbfe40a2a71 /wizards | |
parent | 7da6716e98f22d6cb968c3218b5f4936f868a977 (diff) |
java: fix reportbuilder and wizard
which I broke in commits
70f56bc22fe95 "java: reduce scope, make member classes private"
and
34bcf9b498b "java: remove dead methods"
Change-Id: Id21482782bbc102e60f346a2bf51096af2fcbe22
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/form/CallFormWizard.java | 2 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/query/CallQueryWizard.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/form/CallFormWizard.java b/wizards/com/sun/star/wizards/form/CallFormWizard.java index 1d729091e273..a73391a25c63 100644 --- a/wizards/com/sun/star/wizards/form/CallFormWizard.java +++ b/wizards/com/sun/star/wizards/form/CallFormWizard.java @@ -51,7 +51,7 @@ public class CallFormWizard /** This class implements the component. At least the interfaces XServiceInfo, * XTypeProvider, and XInitialization should be provided by the service. */ - private static class FormWizardImplementation extends com.sun.star.lib.uno.helper.PropertySet implements com.sun.star.lang.XInitialization, com.sun.star.lang.XServiceInfo, com.sun.star.task.XJobExecutor + public static class FormWizardImplementation extends com.sun.star.lib.uno.helper.PropertySet implements com.sun.star.lang.XInitialization, com.sun.star.lang.XServiceInfo, com.sun.star.task.XJobExecutor { private PropertyValue[] m_wizardContext; diff --git a/wizards/com/sun/star/wizards/query/CallQueryWizard.java b/wizards/com/sun/star/wizards/query/CallQueryWizard.java index 7a966bdcfcd7..229caff877fe 100644 --- a/wizards/com/sun/star/wizards/query/CallQueryWizard.java +++ b/wizards/com/sun/star/wizards/query/CallQueryWizard.java @@ -53,7 +53,7 @@ public class CallQueryWizard /** This class implements the component. At least the interfaces XServiceInfo, * XTypeProvider, and XInitialization should be provided by the service. */ - private static class QueryWizardImplementation extends com.sun.star.lib.uno.helper.PropertySet implements com.sun.star.lang.XInitialization, com.sun.star.lang.XServiceInfo, com.sun.star.task.XJobExecutor + public static class QueryWizardImplementation extends com.sun.star.lib.uno.helper.PropertySet implements com.sun.star.lang.XInitialization, com.sun.star.lang.XServiceInfo, com.sun.star.task.XJobExecutor { private PropertyValue[] m_wizardContext; |