(BaseComponent) Renamed GetComponentId to GetId

Former-commit-id: 9cc5a3d86755f0b9928ef697e0e0c16c068819bc
This commit is contained in:
Lynix 2015-03-01 13:41:15 +01:00
parent 9c0c991fe0
commit 99bf3d95f7
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ namespace Ndk
virtual BaseComponent* Clone() const = 0;
nzUInt32 GetComponentId() const;
nzUInt32 GetId() const;
static nzUInt32 GetNextId();

View File

@ -9,7 +9,7 @@ namespace Ndk
{
}
inline nzUInt32 BaseComponent::GetComponentId() const
inline nzUInt32 BaseComponent::GetId() const
{
return m_componentId;
}