diff options
Diffstat (limited to 'enigma-swing')
| -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; |