fpspreadsheet: Change default csv encoding back to utf8 without bom, because importing csv into Excel and Calc is probably not the most important application of fpspreadsheet, and many other programs will not expect a bom in a text file.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6258 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-03-18 23:03:57 +00:00
parent 15a617af53
commit bcc69621fb

View File

@ -98,7 +98,7 @@ uses
fpsUtils, fpsNumFormat;
const
DEFAULT_ENCODING = 'utf8bom';
DEFAULT_ENCODING = 'utf8'; //'utf8bom';
function LineEndingAsString(ALineEnding: TsCSVLineEnding): String;
begin