IDE: fixed warning about abstract creating a class with abstract methods.

git-svn-id: trunk@10539 -
This commit is contained in:
vincents 2007-01-30 15:29:55 +00:00
parent b2bceaa57a
commit 2a4b6678f2

View File

@ -79,7 +79,6 @@ type
fRelations: TList; // list of TKeyCommandRelation, sorted with Command
fCategories: TList;// list of TKeyCommandCategory
fExtToolCount: integer;
function GetCategory(Index: integer): TIDECommandCategory; override;
function GetRelation(Index: integer): TKeyCommandRelation;
function GetRelationCount: integer;
function AddCategory(const Name, Description: string;
@ -94,6 +93,8 @@ type
const Name, LocalizedName: string;
Command: word):integer;
procedure SetExtToolCount(NewCount: integer);
protected
function GetCategory(Index: integer): TIDECommandCategory; override;
public
constructor Create;
destructor Destroy; override;