summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Charts/ChartInCalc.java
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Charts/ChartInCalc.java')
-rw-r--r--odk/examples/DevelopersGuide/Charts/ChartInCalc.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/odk/examples/DevelopersGuide/Charts/ChartInCalc.java b/odk/examples/DevelopersGuide/Charts/ChartInCalc.java
index 617ae104e207..ee493144f98a 100644
--- a/odk/examples/DevelopersGuide/Charts/ChartInCalc.java
+++ b/odk/examples/DevelopersGuide/Charts/ChartInCalc.java
@@ -172,7 +172,7 @@ public class ChartInCalc
if( aDiaProp != null )
{
// change chart type
- aDiaProp.setPropertyValue( "Lines", new Boolean( true ));
+ aDiaProp.setPropertyValue( "Lines", Boolean.TRUE);
// change attributes for all series
// set line width to 0.5mm
@@ -308,7 +308,7 @@ public class ChartInCalc
// change main title
XPropertySet aDocProp = UnoRuntime.queryInterface(
XPropertySet.class, maChartDocument );
- aDocProp.setPropertyValue( "HasMainTitle", new Boolean( true ));
+ aDocProp.setPropertyValue( "HasMainTitle", Boolean.TRUE);
XShape aTitle = maChartDocument.getTitle();
XPropertySet aTitleProp = UnoRuntime.queryInterface( XPropertySet.class, aTitle );