Replaced uint with unsigned int

This commit is contained in:
Robert Osfield
2008-09-01 15:29:22 +00:00
parent 8044188457
commit 8759984f52

View File

@@ -46,12 +46,12 @@ void ShapeAttributeList::read(DataInputStream* in)
// Read ShapeAttributeList's properties
// Read size of the list
uint count = in->readUInt();
unsigned int count = in->readUInt();
resize(count);
// Read elements of the list
for (uint i=0; i < count; i++)
for (unsigned int i=0; i < count; i++)
{
read(in, (*this)[i]);
}