소스 검색

* Fix bug #33052, stripquotes is removed accidentally in TIniFile constructor call of inherited

git-svn-id: trunk@38018 -
michael 7 년 전
부모
커밋
d1bba7ec3d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/fcl-base/src/inifiles.pp

+ 1 - 1
packages/fcl-base/src/inifiles.pp

@@ -933,7 +933,7 @@ constructor TIniFile.Create(const AFileName: string; AOptions: TIniFileoptions);
 begin
   FBOM := '';
   If Not (self is TMemIniFile) then
-    StripQuotes:=True;
+    Include(AOptions,ifoStripQuotes);
   inherited Create(AFileName,AOptions);
   FStream := nil;
   ReadIniValues;