LCL: Fixes for property storage classes. Issue #23644, patch from Cyrax

git-svn-id: trunk@39902 -
This commit is contained in:
juha 2013-01-19 21:57:23 +00:00
parent fb537b160f
commit 3b5868962b
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -581,6 +581,7 @@ begin
try
Section := RootSection;
OnWriteString := @DoWriteString;
OnEraseSection := @DoEraseSections;
try
StoreObjectsProps(Owner,AStoredList);
except