summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/ui/AggregateComponent.java
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/ui/AggregateComponent.java')
-rw-r--r--wizards/com/sun/star/wizards/ui/AggregateComponent.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/ui/AggregateComponent.java b/wizards/com/sun/star/wizards/ui/AggregateComponent.java
index ed05e94bd9bc..31eb46a948f3 100644
--- a/wizards/com/sun/star/wizards/ui/AggregateComponent.java
+++ b/wizards/com/sun/star/wizards/ui/AggregateComponent.java
@@ -480,13 +480,13 @@ public class AggregateComponent extends ControlScroller
private String getFunctionControlName(int _index)
{
- String namesuffix = "_" + String.valueOf(_index + 1);
+ String namesuffix = "_" + (_index + 1);
return "lstfunctions" + namesuffix;
}
private String getFieldsControlName(int _index)
{
- String namesuffix = "_" + String.valueOf(_index + 1);
+ String namesuffix = "_" + (_index + 1);
return "lstFieldnames" + namesuffix;
}