1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Bugzilla 251927.

This commit is contained in:
Randy Rohrbach 2008-10-23 21:14:04 +00:00
parent 129d6e5f36
commit 3d8b28336a
3 changed files with 6 additions and 6 deletions

View file

@ -381,7 +381,7 @@ public class PlainTextExporter implements IMemoryExporter {
}
public void exportMemory() {
Job job = new Job("Memory Export to S-Record File"){ //$NON-NLS-1$
Job job = new Job("Memory Export to Plain Text File"){ //$NON-NLS-1$
public IStatus run(IProgressMonitor monitor) {
try

View file

@ -171,7 +171,7 @@ public class PlainTextImporter implements IMemoryImporter {
public void widgetSelected(SelectionEvent e) {
FileDialog dialog = new FileDialog(parent.getShell(), SWT.SAVE);
dialog.setText("Choose memory export file");
dialog.setText("Choose memory import file");
dialog.setFilterExtensions(new String[] { "*.*;*" } );
dialog.setFilterNames(new String[] { "All Files" } );
dialog.setFileName(fFileText.getText());
@ -282,7 +282,7 @@ public class PlainTextImporter implements IMemoryImporter {
}
public void importMemory() {
Job job = new Job("Memory Download from Plain Text File"){ //$NON-NLS-1$
Job job = new Job("Memory Import from Plain Text File"){ //$NON-NLS-1$
public IStatus run(IProgressMonitor monitor) {

View file

@ -166,7 +166,7 @@ public class SRecordImporter implements IMemoryImporter {
public void widgetSelected(SelectionEvent e) {
FileDialog dialog = new FileDialog(parent.getShell(), SWT.SAVE);
dialog.setText("Choose memory export file");
dialog.setText("Choose memory import file");
dialog.setFilterExtensions(new String[] { "*.*;*" } );
dialog.setFilterNames(new String[] { "All Files" } );
dialog.setFileName(fFileText.getText());
@ -268,7 +268,7 @@ public class SRecordImporter implements IMemoryImporter {
public String getId()
{
return "snfimporter";
return "srecord";
}
public String getName()
@ -277,7 +277,7 @@ public class SRecordImporter implements IMemoryImporter {
}
public void importMemory() {
Job job = new Job("Memory Download from S-Record File"){ //$NON-NLS-1$
Job job = new Job("Memory Import from S-Record File"){ //$NON-NLS-1$
public IStatus run(IProgressMonitor monitor) {