diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-02-16 13:55:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-02-16 13:55:59 +0100 |
commit | 63579501ae4b92db1564dc051706feb34d101eba (patch) | |
tree | 6509bd5000151bb355ddf6e00fad4e5c99102ab6 /wizards | |
parent | 0e8ec9d6415a3381583c87c99f89b509594b68e1 (diff) |
Missing parenthesis
Change-Id: I27aef5d1a0920bb6b9fa9c2204a422b7372fd0cb
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/com/sun/star/wizards/table/ScenarioSelector.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/com/sun/star/wizards/table/ScenarioSelector.java b/wizards/com/sun/star/wizards/table/ScenarioSelector.java index 61b4b748e654..7f8882995477 100644 --- a/wizards/com/sun/star/wizards/table/ScenarioSelector.java +++ b/wizards/com/sun/star/wizards/table/ScenarioSelector.java @@ -235,7 +235,7 @@ public class ScenarioSelector extends FieldSelection implements XItemListener, X { FieldDescription curfielddescription = CurTableWizardUnoDialog.fielditems.get(fieldnames[i]); PropertyValue[] aProperties = curfielddescription.getPropertyValues(); - if (aProperties != null { + if (aProperties != null) { this.curtabledescriptor.addColumn(aProperties); } } |