1. Fix EDKT451 It should append ".txt" to filename

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1860 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
hche10x 2006-10-30 07:40:42 +00:00
parent 6173283b85
commit ba73bc0bc0
1 changed files with 1 additions and 0 deletions

View File

@ -380,6 +380,7 @@ public class ToolChainConfig extends IFrame implements ListSelectionListener, Ta
int result = fc.showSaveDialog(new JPanel());
if (result == JFileChooser.APPROVE_OPTION) {
currentFile = fc.getSelectedFile().getPath();
currentFile = Tools.addPathExt(currentFile, DataType.RETURN_TYPE_TEXT);
try {
vtcc.saveFile(currentFile);
} catch (IOException e) {