1
0
Fork 0
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:
Ted Williams 2008-08-25 19:50:25 +00:00
parent c28276e43b
commit 6f7abc2469

View file

@ -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);