summaryrefslogtreecommitdiff
path: root/forms/qa/integration/forms/ListBox.java
diff options
context:
space:
mode:
Diffstat (limited to 'forms/qa/integration/forms/ListBox.java')
-rw-r--r--forms/qa/integration/forms/ListBox.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/qa/integration/forms/ListBox.java b/forms/qa/integration/forms/ListBox.java
index 8d3bcc7d5d0d..60f115df6221 100644
--- a/forms/qa/integration/forms/ListBox.java
+++ b/forms/qa/integration/forms/ListBox.java
@@ -273,7 +273,7 @@ public class ListBox extends TestCase
final String columnFKName = fieldTypes[i] + "_fk";
final String columnPKName = fieldTypes[i] + "_pk";
XPropertySet listBoxModel = m_formLayer.insertControlLine( "DatabaseListBox", columnFKName, null, 10, 20 + 10*i, 6 );
- listBoxModel.setPropertyValue( "Dropdown", new Boolean( true ) );
+ listBoxModel.setPropertyValue( "Dropdown", Boolean.TRUE );
listBoxModel.setPropertyValue( "ListSourceType", ListSourceType.SQL );
listBoxModel.setPropertyValue( "ListSource", new String[] { "SELECT \"content\", \"" + columnPKName +
"\" FROM \"" + tableName + "\"" } );