mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GT-2698 - convert JCheckBox to GCheckBox
This commit is contained in:
parent
40daea1a56
commit
3c0484cae3
93 changed files with 487 additions and 460 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue