mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 20:59:42 +02:00
* Fix TNoResources abstract methods
git-svn-id: trunk@43330 -
This commit is contained in:
parent
7a8c66d0b1
commit
c35331dc57
@ -59,6 +59,8 @@ Type
|
||||
Public
|
||||
Procedure HandleResource (aFileName : string; Options : TStrings); override;
|
||||
Class Function OutputMode : TResourceOutputMode; override;
|
||||
function GetResourceCount: Integer; override;
|
||||
function GetAsString: String; override;
|
||||
end;
|
||||
implementation
|
||||
|
||||
@ -78,6 +80,16 @@ begin
|
||||
result:=romNone;
|
||||
end;
|
||||
|
||||
function TNoResources.GetResourceCount: Integer;
|
||||
begin
|
||||
Result:=0;
|
||||
end;
|
||||
|
||||
function TNoResources.GetAsString: String;
|
||||
begin
|
||||
Result:='';
|
||||
end;
|
||||
|
||||
{$ENDIF}
|
||||
|
||||
{ TPas2jsResourceHandler }
|
||||
|
Loading…
Reference in New Issue
Block a user