IDE: saving override disk encodings

git-svn-id: trunk@23593 -
This commit is contained in:
mattias 2010-01-29 09:54:08 +00:00
parent f5da4dfcbc
commit 531317a506

View File

@ -443,6 +443,9 @@ begin
FLastConvertDelphiProject:=XMLConfig.GetValue(Path+'Conversion/Delphi/Project','');
FLastConvertDelphiPackage:=XMLConfig.GetValue(Path+'Conversion/Delphi/Package','');
FLastConvertDelphiUnit:=XMLConfig.GetValue(Path+'Conversion/Delphi/Unit','');
// encodings
LoadStringToStringTree(XMLConfig,fFileEncodings,Path+'FileEncodings/');
end;
procedure TInputHistories.SaveToXMLConfig(XMLConfig: TXMLConfig;
@ -498,6 +501,8 @@ begin
FLastConvertDelphiPackage,'');
XMLConfig.SetDeleteValue(Path+'Conversion/Delphi/Unit',
FLastConvertDelphiUnit,'');
// encodings
SaveStringToStringTree(XMLConfig,fFileEncodings,Path+'FileEncodings/');
end;
procedure TInputHistories.SetLazarusDefaultFilename;