summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Spreadsheet/GeneralTableSample.java
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Spreadsheet/GeneralTableSample.java')
-rw-r--r--odk/examples/DevelopersGuide/Spreadsheet/GeneralTableSample.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/odk/examples/DevelopersGuide/Spreadsheet/GeneralTableSample.java b/odk/examples/DevelopersGuide/Spreadsheet/GeneralTableSample.java
index b018c55be9ef..f25a9cfded8f 100644
--- a/odk/examples/DevelopersGuide/Spreadsheet/GeneralTableSample.java
+++ b/odk/examples/DevelopersGuide/Spreadsheet/GeneralTableSample.java
@@ -167,7 +167,7 @@ public class GeneralTableSample extends SpreadsheetDocHelper
aColumnObj = xColumnsName.getByName( "D" );
xPropSet = UnoRuntime.queryInterface( com.sun.star.beans.XPropertySet.class, aColumnObj );
- xPropSet.setPropertyValue( "IsVisible", new Boolean( false ) );
+ xPropSet.setPropertyValue( "IsVisible", Boolean.FALSE );
// Get row 7 by index (interface XIndexAccess)
Object aRowObj = xRows.getByIndex( 6 );