mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GT-2698 refactor JLabel -> GLabel, JComboBox -> GComboBox, renderers.
This commit is contained in:
parent
e0c25b0590
commit
6448f0da8f
280 changed files with 2277 additions and 1531 deletions
|
@ -24,7 +24,7 @@ import javax.swing.JComponent;
|
|||
import org.python.core.PyInstance;
|
||||
import org.python.core.PyObject;
|
||||
|
||||
import docking.DockingUtils;
|
||||
import docking.widgets.label.GDLabel;
|
||||
import ghidra.app.plugin.core.console.CodeCompletion;
|
||||
import ghidra.framework.options.Options;
|
||||
import ghidra.util.Msg;
|
||||
|
@ -203,7 +203,7 @@ public class PythonCodeCompletionFactory {
|
|||
description = description + " (" + className + ")";
|
||||
}
|
||||
|
||||
comp = DockingUtils.createNonHtmlLabel(description);
|
||||
comp = new GDLabel(description);
|
||||
Iterator<Class<?>> iter = classes.iterator();
|
||||
while (iter.hasNext()) {
|
||||
Class<?> testClass = iter.next();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue