diff options
| author | 2021-03-30 13:42:59 +0200 | |
|---|---|---|
| committer | 2021-03-30 13:42:59 +0200 | |
| commit | 122214c1f8ffc85b9bdd34e16d1a69aba870be77 (patch) | |
| tree | b33925a1806bebf7598d44ba2bea9e7c33db5ade | |
| parent | Fix using runtime changed configuration for parts of the UI that don't suppor... (diff) | |
| download | enigma-122214c1f8ffc85b9bdd34e16d1a69aba870be77.tar.gz enigma-122214c1f8ffc85b9bdd34e16d1a69aba870be77.tar.xz enigma-122214c1f8ffc85b9bdd34e16d1a69aba870be77.zip | |
Fix method name
| -rw-r--r-- | enigma-swing/src/main/java/cuchaz/enigma/gui/panels/IdentifierPanel.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/enigma-swing/src/main/java/cuchaz/enigma/gui/panels/IdentifierPanel.java b/enigma-swing/src/main/java/cuchaz/enigma/gui/panels/IdentifierPanel.java index b31d5c35..255fe81d 100644 --- a/enigma-swing/src/main/java/cuchaz/enigma/gui/panels/IdentifierPanel.java +++ b/enigma-swing/src/main/java/cuchaz/enigma/gui/panels/IdentifierPanel.java | |||
| @@ -207,7 +207,7 @@ public class IdentifierPanel { | |||
| 207 | this.row += 1; | 207 | this.row += 1; |
| 208 | } | 208 | } |
| 209 | 209 | ||
| 210 | public ConvertingTextField addCovertTextField(String c1, String c2) { | 210 | public ConvertingTextField addConvertingTextField(String c1, String c2) { |
| 211 | ConvertingTextField textField = new ConvertingTextField(c2); | 211 | ConvertingTextField textField = new ConvertingTextField(c2); |
| 212 | addRow(new JLabel(c1), textField.getUi()); | 212 | addRow(new JLabel(c1), textField.getUi()); |
| 213 | return textField; | 213 | return textField; |
| @@ -215,7 +215,7 @@ public class IdentifierPanel { | |||
| 215 | 215 | ||
| 216 | public ConvertingTextField addRenameTextField(String c1, String c2) { | 216 | public ConvertingTextField addRenameTextField(String c1, String c2) { |
| 217 | if (project.isRenamable(e)) { | 217 | if (project.isRenamable(e)) { |
| 218 | return addCovertTextField(c1, c2); | 218 | return addConvertingTextField(c1, c2); |
| 219 | } else { | 219 | } else { |
| 220 | addStringRow(c1, c2); | 220 | addStringRow(c1, c2); |
| 221 | return null; | 221 | return null; |