mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-06 17:03:04 +01:00
+ fixed missing class directives, poped up after yesterdays changes
git-svn-id: trunk@3689 -
This commit is contained in:
parent
68a8f531fe
commit
6fa48a858a
@ -804,7 +804,7 @@ begin
|
|||||||
inherited Destroy;
|
inherited Destroy;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TPasProcedureType.TypeName: string;
|
class function TPasProcedureType.TypeName: string;
|
||||||
begin
|
begin
|
||||||
Result := 'procedure';
|
Result := 'procedure';
|
||||||
end;
|
end;
|
||||||
@ -833,7 +833,8 @@ begin
|
|||||||
inherited Destroy;
|
inherited Destroy;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TPasFunctionType.TypeName: string;
|
|
||||||
|
class function TPasFunctionType.TypeName: string;
|
||||||
begin
|
begin
|
||||||
Result := 'function';
|
Result := 'function';
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -1223,7 +1223,7 @@ begin
|
|||||||
inherited Destroy;
|
inherited Destroy;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TXPathNodeSetVariable.TypeName: String;
|
class function TXPathNodeSetVariable.TypeName: String;
|
||||||
begin
|
begin
|
||||||
Result := SNodeSet;
|
Result := SNodeSet;
|
||||||
end;
|
end;
|
||||||
@ -1248,7 +1248,7 @@ begin
|
|||||||
FValue := AValue;
|
FValue := AValue;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TXPathBooleanVariable.TypeName: String;
|
class function TXPathBooleanVariable.TypeName: String;
|
||||||
begin
|
begin
|
||||||
Result := SBoolean;
|
Result := SBoolean;
|
||||||
end;
|
end;
|
||||||
@ -1281,7 +1281,7 @@ begin
|
|||||||
FValue := AValue;
|
FValue := AValue;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TXPathNumberVariable.TypeName: String;
|
class function TXPathNumberVariable.TypeName: String;
|
||||||
begin
|
begin
|
||||||
Result := SNumber;
|
Result := SNumber;
|
||||||
end;
|
end;
|
||||||
@ -1312,7 +1312,7 @@ begin
|
|||||||
FValue := AValue;
|
FValue := AValue;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TXPathStringVariable.TypeName: String;
|
class function TXPathStringVariable.TypeName: String;
|
||||||
begin
|
begin
|
||||||
Result := SString;
|
Result := SString;
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -102,7 +102,7 @@ type
|
|||||||
CurOutputNode: TDOMNode;
|
CurOutputNode: TDOMNode;
|
||||||
InsideHeadRow, DoPasHighlighting: Boolean;
|
InsideHeadRow, DoPasHighlighting: Boolean;
|
||||||
HighlighterFlags: Byte;
|
HighlighterFlags: Byte;
|
||||||
|
|
||||||
FooterFile: string;
|
FooterFile: string;
|
||||||
|
|
||||||
function ResolveLinkID(const Name: String): DOMString;
|
function ResolveLinkID(const Name: String): DOMString;
|
||||||
@ -2282,11 +2282,11 @@ begin
|
|||||||
AppendText(CodeEl, AType.Name);
|
AppendText(CodeEl, AType.Name);
|
||||||
AppendSym(CodeEl, ' = ');
|
AppendSym(CodeEl, ' = ');
|
||||||
|
|
||||||
If Assigned(DocNode) and
|
If Assigned(DocNode) and
|
||||||
Assigned(DocNode.Node) and
|
Assigned(DocNode.Node) and
|
||||||
(Docnode.Node['opaque']='1') then
|
(Docnode.Node['opaque']='1') then
|
||||||
AppendText(CodeEl,SDocOpaque)
|
AppendText(CodeEl,SDocOpaque)
|
||||||
else
|
else
|
||||||
begin
|
begin
|
||||||
// Alias
|
// Alias
|
||||||
if AType.ClassType = TPasAliasType then
|
if AType.ClassType = TPasAliasType then
|
||||||
@ -2967,7 +2967,7 @@ begin
|
|||||||
WriteHTMLPages;
|
WriteHTMLPages;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure THTMLWriter.Usage(List: TStrings);
|
class procedure THTMLWriter.Usage(List: TStrings);
|
||||||
begin
|
begin
|
||||||
List.add('--footer');
|
List.add('--footer');
|
||||||
List.Add(SHTMLUsageFooter);
|
List.Add(SHTMLUsageFooter);
|
||||||
|
|||||||
@ -624,7 +624,7 @@ begin
|
|||||||
WriteLnF('\pageref{%s} & %s & %s \\',[ALabel,AName,ADescr]);
|
WriteLnF('\pageref{%s} & %s & %s \\',[ALabel,AName,ADescr]);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TLaTeXWriter.FileNameExtension: String;
|
class function TLaTeXWriter.FileNameExtension: String;
|
||||||
begin
|
begin
|
||||||
Result:=TexExtension;
|
Result:=TexExtension;
|
||||||
end;
|
end;
|
||||||
|
|||||||
@ -1740,14 +1740,12 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
function TManWriter.FileNameExtension: String;
|
class function TManWriter.FileNameExtension: String;
|
||||||
begin
|
begin
|
||||||
Result:=IntToStr(DefaultManSection);
|
Result:=IntToStr(DefaultManSection);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
procedure TManWriter.WriteClassMethodOverview(ClassDecl: TPasClassType);
|
procedure TManWriter.WriteClassMethodOverview(ClassDecl: TPasClassType);
|
||||||
|
|
||||||
var
|
var
|
||||||
|
|||||||
@ -498,7 +498,7 @@ begin
|
|||||||
LineWidth:=DefaultLineWidth;
|
LineWidth:=DefaultLineWidth;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTXTWriter.Usage(List: TStrings);
|
class procedure TTXTWriter.Usage(List: TStrings);
|
||||||
begin
|
begin
|
||||||
inherited Usage(List);
|
inherited Usage(List);
|
||||||
end;
|
end;
|
||||||
@ -649,7 +649,7 @@ begin
|
|||||||
WriteLnF('%.30s %s ',[AName,ADescr]);
|
WriteLnF('%.30s %s ',[AName,ADescr]);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TTxtWriter.FileNameExtension: String;
|
class function TTxtWriter.FileNameExtension: String;
|
||||||
begin
|
begin
|
||||||
Result:=TxtExtension;
|
Result:=TxtExtension;
|
||||||
end;
|
end;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user