mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
fixing typo in RenameStructureFieldTask comment: "Created by retype action" -> "Created by Rename Structure Field action"
This commit is contained in:
parent
65b290624e
commit
ef4cbad4ec
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ public class RenameStructFieldTask extends RenameTask {
|
|||
DataTypeComponent comp = structure.getComponentAt(offset);
|
||||
if (comp.getDataType() == DataType.DEFAULT) { // Is this just a placeholder
|
||||
DataType newtype = new Undefined1DataType();
|
||||
structure.replaceAtOffset(offset, newtype, 1, newName, "Created by retype action");
|
||||
structure.replaceAtOffset(offset, newtype, 1, newName, "Created by Rename Structure Field action");
|
||||
}
|
||||
else {
|
||||
comp.setFieldName(newName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue