mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-12-11 14:41:57 +00:00
IProperty: Make use of size_t where applicable
This commit is contained in:
@@ -73,7 +73,7 @@ void CGeneratePropertyNamesDialog::AddToIDPool(IProperty* pProperty)
|
||||
/** Populate the ID pool with the children of the given property */
|
||||
void CGeneratePropertyNamesDialog::AddChildrenToIDPool(IProperty* pProperty, bool Recursive)
|
||||
{
|
||||
for (uint32 ChildIdx = 0; ChildIdx < pProperty->NumChildren(); ChildIdx++)
|
||||
for (size_t ChildIdx = 0; ChildIdx < pProperty->NumChildren(); ChildIdx++)
|
||||
{
|
||||
IProperty* pChild = pProperty->ChildByIndex(ChildIdx);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user