mirror of https://gitlab.com/basile.b/dexed.git
fix #54 - SEGFAULT on exit when build with FPC 3.2.0
This commit is contained in:
parent
c48a8f7e8a
commit
79190c984a
|
@ -8,6 +8,7 @@
|
|||
## Regressions fixed
|
||||
|
||||
- Messages, the messages matching to the call stack printed on assert failure were not clickable anymore. The regression was introduced when the support for GNU-style messages was added.
|
||||
- Segfault on exit since built with FPC 3.2.0. (#54)
|
||||
|
||||
## Bugs fixed
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@ begin
|
|||
EntitiesConnector.addSingleService(self);
|
||||
fname := getDocPath + OptsFname;
|
||||
if OptsFname.fileExists then
|
||||
fMru.LoadFromFile(fname);
|
||||
fMru.LoadFromFile(fname, TEncoding.Default);
|
||||
if fMru.Count.equals(0) then
|
||||
fMru.Insert(0, '(your input here)');
|
||||
|
||||
|
@ -94,7 +94,7 @@ end;
|
|||
destructor TProcInputWidget.destroy;
|
||||
begin
|
||||
// note that mru list max count is not saved.
|
||||
fMru.SaveToFile(getDocPath + OptsFname);
|
||||
fMru.SaveToFile(getDocPath + OptsFname, TEncoding.UTF8);
|
||||
fMru.Free;
|
||||
inherited;
|
||||
end;
|
||||
|
|
Loading…
Reference in New Issue