mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 21:38:27 +02:00
LCL: Fixes for property storage classes. Issue #23644, patch from Cyrax
git-svn-id: trunk@39902 -
This commit is contained in:
parent
fb537b160f
commit
3b5868962b
@ -283,9 +283,9 @@ begin
|
||||
try
|
||||
FInifile.ReadSections(Lines);
|
||||
for I := 0 to Lines.Count - 1 do begin
|
||||
if (Lines[I] = IniSection) or
|
||||
(IsWild(Lines[I], IniSection + '.*', False) or
|
||||
IsWild(Lines[I], IniSection + '\*', False)) then
|
||||
if (Lines[I] = ARootSection) or
|
||||
(IsWild(Lines[I], ARootSection + '.*', False) or
|
||||
IsWild(Lines[I], ARootSection + '\*', False)) then
|
||||
FInifile.EraseSection(Lines[I]);
|
||||
end;
|
||||
finally
|
||||
|
@ -581,6 +581,7 @@ begin
|
||||
try
|
||||
Section := RootSection;
|
||||
OnWriteString := @DoWriteString;
|
||||
OnEraseSection := @DoEraseSections;
|
||||
try
|
||||
StoreObjectsProps(Owner,AStoredList);
|
||||
except
|
||||
|
Loading…
Reference in New Issue
Block a user