mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
[244608] [memory] import dialog needs better validation
This commit is contained in:
parent
c28276e43b
commit
6f7abc2469
1 changed files with 4 additions and 1 deletions
|
@ -106,10 +106,13 @@ public class PlainTextImporter implements IMemoryImporter {
|
|||
// data.top = new FormAttachment(fComboRestoreToFileAddress);
|
||||
// fComboRestoreToThisAddress.setLayoutData(data);
|
||||
|
||||
Label labelStartText = new Label(composite, SWT.NONE);
|
||||
labelStartText.setText("Restore to address: ");
|
||||
|
||||
fStartText = new Text(composite, SWT.NONE);
|
||||
data = new FormData();
|
||||
// data.top = new FormAttachment(fComboRestoreToFileAddress);
|
||||
// data.left = new FormAttachment(fComboRestoreToThisAddress);
|
||||
data.left = new FormAttachment(labelStartText);
|
||||
data.width = 100;
|
||||
fStartText.setLayoutData(data);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue