ref #7981 fix literature description default value handling
authorAndreas Müller <a.mueller@bgbm.org>
Fri, 1 Oct 2021 11:15:29 +0000 (13:15 +0200)
committerAndreas Müller <a.mueller@bgbm.org>
Fri, 1 Oct 2021 11:15:29 +0000 (13:15 +0200)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/dialog/configurator/StructuredDescriptionAggregationConfigurationWizardPage.java

index 1dcdd2de5f659e29e0b656f314254489bffcc411..bbb009882839bc3ab0d2d4a63e2b867ddaf86288 100755 (executable)
@@ -189,13 +189,13 @@ public class StructuredDescriptionAggregationConfigurationWizardPage
 
         checkIncludeDefaultDescriptions = new Button(scopeComposite, SWT.CHECK);
         checkIncludeDefaultDescriptions.setText(Messages.StructuredDescriptionAggregationWizardPage_SELECT_DEFAULT_DESCRIPTION);
-        //enable both once default descriptions are handled in aggregation
+        //TODO enable both once default descriptions are handled in aggregation
         checkIncludeDefaultDescriptions.setEnabled(false);
 //        checkIncludeDefaultDescriptions.setSelection(configurator.isIncludeDefault());
 
         checkIncludeLiteratureDescriptions = new Button(scopeComposite, SWT.CHECK);
         checkIncludeLiteratureDescriptions.setText(Messages.StructuredDescriptionAggregationWizardPage_SELECT_LITERATURE_DESCRIPTION);
-        checkIncludeDefaultDescriptions.setSelection(configurator.isIncludeLiterature());
+        checkIncludeLiteratureDescriptions.setSelection(configurator.isIncludeLiterature());
 
         //ranks
         Label higherRankLabel = new Label(control, SWT.NULL);