GP-1403 Added support for pointer-typedef settings, including support

for Archive use.  Corrected settings stacking behavior.
Unified two settings adapters into one shared implementation (upgrade
and archive schema version still needed). Added ability to edit default
settings for components from within the structure/union editor.
Improved use of immutable settings.  Improved array settings.  Added
PointerTypeDefBuilder and PointerTypeDefInspector.  Added versioning
support to DataTypeManagerDB to facilitate upgrades and compatibility
detection.  Initial improvements added for locking of datatype settings.
Added support for auto-named pointer-typedefs.
This commit is contained in:
ghidra1 2021-10-04 11:17:39 -04:00
parent 0ab836add7
commit ca410b1274
162 changed files with 7670 additions and 3953 deletions

View file

@ -85,7 +85,7 @@ public class VersionExceptionHandler {
String message = "This " + contentType +
" file is shared with other users. If you upgrade this file,\n" +
"other users will not be able to read the new version until they upgrade to \n" +
"the same version of Ghidra. Do you want to continue?";
"a compatible version of Ghidra. Do you want to continue?";
return OptionDialog.showOptionDialog(parent, title, message, "Upgrade",
OptionDialog.WARNING_MESSAGE);
}