Removed headers that were accidently checked in.
Lots of compiling.
This commit is contained in:
parent
f759e35cd8
commit
71fa444424
47 changed files with 312 additions and 1049 deletions
|
@ -228,7 +228,8 @@ BOOL Object_Chunk::assoc_with_shape_no(File_Chunk *fc)
|
|||
List<Chunk *> chlst;
|
||||
fc->lookup_child("REBSHAPE",chlst);
|
||||
|
||||
for (LIF<Chunk *> l(&chlst); !l.done(); l.next())
|
||||
LIF<Chunk *> l(&chlst);
|
||||
for (; !l.done(); l.next())
|
||||
{
|
||||
shp = (Shape_Chunk *)l();
|
||||
shphd = shp->get_header();
|
||||
|
@ -1233,6 +1234,8 @@ Object_Track_Chunk2::Object_Track_Chunk2 (Chunk_With_Children * parent,const cha
|
|||
Object_Track_Chunk2::Object_Track_Chunk2 (Chunk_With_Children * parent,const char * data, size_t /*size*/)
|
||||
: Chunk (parent, "OBJTRAK2")
|
||||
{
|
||||
int i;
|
||||
|
||||
num_sections=*(int*)data;
|
||||
data+=4;
|
||||
|
||||
|
@ -1241,7 +1244,7 @@ Object_Track_Chunk2::Object_Track_Chunk2 (Chunk_With_Children * parent,const cha
|
|||
else
|
||||
sections=0;
|
||||
|
||||
for(int i=0;i<num_sections;i++)
|
||||
for(i=0;i<num_sections;i++)
|
||||
{
|
||||
sections[i]=*(ChunkTrackSection*)data;
|
||||
data+=sizeof(ChunkTrackSection);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue