diff --git a/components/ideintf/projectintf.pas b/components/ideintf/projectintf.pas index 9ddafcab25..22d454506e 100644 --- a/components/ideintf/projectintf.pas +++ b/components/ideintf/projectintf.pas @@ -1025,9 +1025,9 @@ begin 'type'+LE +' T'+ResourceName+' = class('+ResourceClass.ClassName+')'+LE +' private'+LE - +' { private declarations }'+LE + +LE +' public'+LE - +' { public declarations }'+LE + +LE +' end;'+LE +LE; diff --git a/components/lazthread/reglazthread.pas b/components/lazthread/reglazthread.pas index f49f1a1060..73a5478e75 100644 --- a/components/lazthread/reglazthread.pas +++ b/components/lazthread/reglazthread.pas @@ -108,9 +108,8 @@ begin Add('type'); Add(' ' + GetNextThreadName + ' = class(TThread)'); Add(' private'); - Add(' { Private declarations }'); + Add(''); Add(' protected'); - Add(' { Protected declarations }'); Add(' procedure Execute; override;'); Add(' end;'); Add(''); diff --git a/ide/mainintf.pas b/ide/mainintf.pas index 84101dc290..87f0c014ba 100644 --- a/ide/mainintf.pas +++ b/ide/mainintf.pas @@ -544,9 +544,9 @@ begin 'type'+LE +' T'+ResourceName+' = class('+ResourceClass.ClassName+')'+LE +' private'+LE - +' { private declarations }'+LE + +LE +' public'+LE - +' { public declarations }'+LE + +LE +' end;'+LE +LE; diff --git a/packager/pkgmanager.pas b/packager/pkgmanager.pas index 48fbe10816..dd2f25eb97 100644 --- a/packager/pkgmanager.pas +++ b/packager/pkgmanager.pas @@ -805,13 +805,13 @@ begin +'type'+LE +' '+Params.NewClassName+' = class('+Params.AncestorType+')'+LE +' private'+LE - +' { Private declarations }'+LE + +LE +' protected'+LE - +' { Protected declarations }'+LE + +LE +' public'+LE - +' { Public declarations }'+LE + +LE +' published'+LE - +' { Published declarations }'+LE + +LE +' end;'+LE +LE +'procedure Register;'+LE