Kaydet (Commit) d22f8bb6 authored tarafından Noel Grandin's avatar Noel Grandin

fix compile error in SelectionDialog (java unit test)

I suspect that this code is not actually in use anymore

Change-Id: I1888c4beec9add7d82e321ad09e1116d1205fbca
üst 9b01428b
......@@ -68,7 +68,7 @@ class SelectionDialog extends JDialog
maChildrenSelector = new JList (GetChildrenList());
maChildrenSelector.setPreferredSize (new Dimension (500,300));
aContent.add (maChildrenSelector, BorderLayout.CENTER);
maChildrenSelector.setSelectionMode (ListSelectionModel.SelectionMode::Single);
maChildrenSelector.setSelectionMode (ListSelectionModel.SINGLE_SELECTION);
JPanel aButtons = new JPanel();
aButtons.setLayout( new FlowLayout() );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment