Deprecate ID::Type(), replace with GetType()

This commit is contained in:
Jon Siwek 2020-05-07 20:47:33 -07:00
parent 6e647416d5
commit 3f07c57523
24 changed files with 111 additions and 106 deletions

View file

@ -44,10 +44,10 @@ FuncType* EventHandler::FType(bool check_export)
if ( ! id )
return nullptr;
if ( id->Type()->Tag() != TYPE_FUNC )
if ( id->GetType()->Tag() != TYPE_FUNC )
return nullptr;
type = id->Type()->AsFuncType();
type = id->GetType()->AsFuncType();
return type;
}