mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-26 10:25:32 +02:00
[252130] Memory Import should buffer writes to improve performance
This commit is contained in:
parent
4b0daf25c0
commit
be8328b09a
1 changed files with 2 additions and 2 deletions
|
@ -96,14 +96,14 @@ public class SRecordImporter implements IMemoryImporter {
|
||||||
fComboRestoreToFileAddress = new Button(composite, SWT.RADIO);
|
fComboRestoreToFileAddress = new Button(composite, SWT.RADIO);
|
||||||
fComboRestoreToFileAddress.setSelection(true);
|
fComboRestoreToFileAddress.setSelection(true);
|
||||||
fComboRestoreToFileAddress.setText("Restore to address specified in the file");
|
fComboRestoreToFileAddress.setText("Restore to address specified in the file");
|
||||||
fComboRestoreToFileAddress.setSelection(!new Boolean(properties.getProperty(TRANSFER_CUSTOM_START_ADDRESS, "true")).booleanValue());
|
fComboRestoreToFileAddress.setSelection(!new Boolean(properties.getProperty(TRANSFER_CUSTOM_START_ADDRESS, "false")).booleanValue());
|
||||||
//comboRestoreToFileAddress.setLayoutData(data);
|
//comboRestoreToFileAddress.setLayoutData(data);
|
||||||
|
|
||||||
// restore to this address
|
// restore to this address
|
||||||
|
|
||||||
fComboRestoreToThisAddress = new Button(composite, SWT.RADIO);
|
fComboRestoreToThisAddress = new Button(composite, SWT.RADIO);
|
||||||
fComboRestoreToThisAddress.setText("Restore to this address: ");
|
fComboRestoreToThisAddress.setText("Restore to this address: ");
|
||||||
fComboRestoreToThisAddress.setSelection(new Boolean(properties.getProperty(TRANSFER_CUSTOM_START_ADDRESS, "true")).booleanValue());
|
fComboRestoreToThisAddress.setSelection(new Boolean(properties.getProperty(TRANSFER_CUSTOM_START_ADDRESS, "false")).booleanValue());
|
||||||
FormData data = new FormData();
|
FormData data = new FormData();
|
||||||
data.top = new FormAttachment(fComboRestoreToFileAddress);
|
data.top = new FormAttachment(fComboRestoreToFileAddress);
|
||||||
fComboRestoreToThisAddress.setLayoutData(data);
|
fComboRestoreToThisAddress.setLayoutData(data);
|
||||||
|
|
Loading…
Add table
Reference in a new issue