Kaydet (Commit) f3edc18b authored tarafından Julien Nabet's avatar Julien Nabet

Following fdo#87123: Impossible to create table or query with wizard

See https://bugs.freedesktop.org/show_bug.cgi?id=87123#c15
and above all https://bugs.freedesktop.org/show_bug.cgi?id=87123#c18
Thank you Noel for your help!

Change-Id: I9feb2384ff5965bab005c9a1e8803062cd9d0f94
üst b03eb878
...@@ -56,6 +56,9 @@ public class CallQueryWizard ...@@ -56,6 +56,9 @@ public class CallQueryWizard
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 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; private PropertyValue[] m_wizardContext;
// the next two fields are accessed by reflection, do not delete!
public String Command;
public final Integer CommandType = com.sun.star.sdb.CommandType.QUERY;
/** The constructor of the inner class has a XMultiServiceFactory parameter. /** The constructor of the inner class has a XMultiServiceFactory parameter.
* @param i_serviceFactory A special service factory could be introduced while initializing. * @param i_serviceFactory A special service factory could be introduced while initializing.
......
...@@ -56,6 +56,9 @@ public class CallTableWizard ...@@ -56,6 +56,9 @@ public class CallTableWizard
{ {
private PropertyValue[] m_wizardContext; private PropertyValue[] m_wizardContext;
// the next two fields are accessed by reflection, do not delete!
public String Command;
public final Integer CommandType = com.sun.star.sdb.CommandType.TABLE;
/** The constructor of the inner class has a XMultiServiceFactory parameter. /** The constructor of the inner class has a XMultiServiceFactory parameter.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment