Skip to content

Commit

Permalink
[26643] fix databinding of gdt6302 on NeueUntersuchungAnfordernDialog
Browse files Browse the repository at this point in the history
  • Loading branch information
huthomas committed Sep 25, 2024
1 parent 7f0b37d commit a84404d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.eclipse.core.databinding.Binding;
import org.eclipse.core.databinding.DataBindingContext;
import org.eclipse.core.databinding.UpdateValueStrategy;
import org.eclipse.core.databinding.beans.typed.BeanProperties;
import org.eclipse.core.databinding.beans.typed.PojoProperties;
import org.eclipse.core.databinding.observable.Observables;
import org.eclipse.core.databinding.observable.map.IObservableMap;
import org.eclipse.core.databinding.observable.value.IObservableValue;
Expand Down Expand Up @@ -367,7 +367,7 @@ protected void createButtonsForButtonBar(Composite parent) {

protected void initDataBindings() {
DataBindingContext bindingContext = new DataBindingContext();
IObservableMap gdt6302ValuesObserveMap = BeanProperties.map("values", Integer.class, String.class)
IObservableMap gdt6302ValuesObserveMap = PojoProperties.map("values", Integer.class, String.class)
.observe(gdt6302);

Text[] control = { txtPatientenKennung, txtPatientNachname, txtPatientVorname, txtIDReceiver, txtIDSender,
Expand Down

0 comments on commit a84404d

Please sign in to comment.