ref #8447: move hybrids and synonyms
authorKatja Luther <k.luther@bgbm.org>
Fri, 23 Aug 2019 07:50:09 +0000 (09:50 +0200)
committerKatja Luther <k.luther@bgbm.org>
Fri, 23 Aug 2019 07:50:09 +0000 (09:50 +0200)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/dialog/configurator/PublishSubTreeConfiguratorWizardPage.java

index 63491bc467fac7d0c5bf02d4a6ab3dbc073674e5..8db52838974abcff6d64c469ecfd0a1a29d0da2d 100755 (executable)
@@ -100,6 +100,9 @@ public class PublishSubTreeConfiguratorWizardPage extends WizardPage implements
         btnIncludeAcceptedTaxa.setText(Messages.SetPublishConfiguration_IncludeAcceptedTaxa);
         btnIncludeAcceptedTaxa.addSelectionListener(this);
 
+        btnIncludeSynonyms = new Button(control, SWT.CHECK);
+        btnIncludeSynonyms.setText(Messages.SetPublishConfiguration_IncludeSynonyms);
+
         btnIncludeMisappliedNames = new Button(control, SWT.CHECK);
         btnIncludeMisappliedNames.setText(Messages.SetPublishConfiguration_IncludeMisappliedNames);
         btnIncludeMisappliedNames.addSelectionListener(this);
@@ -108,18 +111,15 @@ public class PublishSubTreeConfiguratorWizardPage extends WizardPage implements
         btnIncludeProParteSynonyms.setText(Messages.SetPublishConfiguration_IncludeProParteSynonyms);
         btnIncludeProParteSynonyms.addSelectionListener(this);
 
-        btnIncludeHybrids = new Button(control, SWT.CHECK);
-        btnIncludeHybrids.setText(Messages.SetPublishConfiguration_IncludeHybrids);
-        btnIncludeHybrids.addSelectionListener(this);
-
-        btnIncludeSynonyms = new Button(control, SWT.CHECK);
-        btnIncludeSynonyms.setText(Messages.SetPublishConfiguration_IncludeSynonyms);
-
         Label space = new Label(control, SWT.NONE);
 
         btnIncludeSharedTaxa = new Button(control, SWT.CHECK);
         btnIncludeSharedTaxa.setText(Messages.SetPublishConfiguration_IncludeSharedtaxa);
 
+        btnIncludeHybrids = new Button(control, SWT.CHECK);
+        btnIncludeHybrids.setText(Messages.SetPublishConfiguration_IncludeHybrids);
+
+
         m_bindingContext = initDataBindings();
 
         setControl(composite);