GT-2698 - convert JCheckBox to GCheckBox

This commit is contained in:
dev747368 2019-04-16 17:01:51 -04:00
parent 40daea1a56
commit 3c0484cae3
93 changed files with 487 additions and 460 deletions

View file

@ -23,6 +23,7 @@ import java.awt.event.ActionListener;
import javax.swing.*;
import docking.widgets.checkbox.GCheckBox;
import docking.widgets.label.GDLabel;
public class SearchGuiSingle extends SearchBaseExtended {
@ -45,10 +46,10 @@ public class SearchGuiSingle extends SearchBaseExtended {
frame = new JFrame();
jPanel1 = new JPanel();
mnemonicCheckBox = new JCheckBox("Mnemonics", true);
opOneCheckBox = new JCheckBox("Operand 1", false);
opTwoCheckBox = new JCheckBox("Operand 2", false);
constCheckBox = new JCheckBox("Constants", false);
mnemonicCheckBox = new GCheckBox("Mnemonics", true);
opOneCheckBox = new GCheckBox("Operand 1", false);
opTwoCheckBox = new GCheckBox("Operand 2", false);
constCheckBox = new GCheckBox("Constants", false);
searchButton = new JButton();
jLabel1 = new GDLabel();