summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorFrank Schönheit [fs] <frank.schoenheit@sun.com>2009-11-02 12:42:50 +0100
committerFrank Schönheit [fs] <frank.schoenheit@sun.com>2009-11-02 12:42:50 +0100
commitb04b7b19d0f0f0e32254039134e1ed7812bbc74f (patch)
treeb570b1ca328833cc1015b124d5b3ec5f54f2f1db /wizards
parent0e6b1ba3ccbf5f06f4c6fb3ae837207309122e61 (diff)
don't use ShowTreeView and ShowTreeViewButton, those are superseded by Enabled/ShowBrowser, and lead to an assertion in non-product builds
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/db/CommandMetaData.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/db/CommandMetaData.java b/wizards/com/sun/star/wizards/db/CommandMetaData.java
index b26259fc8a47..c23ec5cd2e5a 100644
--- a/wizards/com/sun/star/wizards/db/CommandMetaData.java
+++ b/wizards/com/sun/star/wizards/db/CommandMetaData.java
@@ -644,8 +644,8 @@ public class CommandMetaData extends DBMetaData
rDispatchArguments[1] = Properties.createProperty("ActiveConnection", this.DBConnection);
rDispatchArguments[2] = Properties.createProperty("Command", _commandname);
rDispatchArguments[3] = Properties.createProperty("CommandType", new Integer(_commandtype));
- rDispatchArguments[4] = Properties.createProperty("ShowTreeView", Boolean.FALSE);
- rDispatchArguments[5] = Properties.createProperty("ShowTreeViewButton", Boolean.FALSE);
+ rDispatchArguments[4] = Properties.createProperty("ShowBrowser", Boolean.FALSE);
+ rDispatchArguments[5] = Properties.createProperty("EnableBrowser", Boolean.FALSE);
rDispatchArguments[6] = Properties.createProperty("ShowMenu", Boolean.TRUE);
return showCommandView(".component:DB/DataSourceBrowser", rDispatchArguments,parentFrame);
}