creator/src/engine.cpp
changeset 52 36d60d12b4af
parent 51 b048e15729d6
equal deleted inserted replaced
51:b048e15729d6 52:36d60d12b4af
  2229         while ( !err )
  2229         while ( !err )
  2230             {
  2230             {
  2231             TRAP( err, id = in.ReadInt32L() );  // will leave with KErrEof
  2231             TRAP( err, id = in.ReadInt32L() );  // will leave with KErrEof
  2232             if ( !err )
  2232             if ( !err )
  2233                 {
  2233                 {
  2234                 aEntryIds.Append( id );
  2234                 aEntryIds.AppendL( id );
  2235                 }
  2235                 }
  2236             }
  2236             }
  2237         CleanupStack::PopAndDestroy( &in );
  2237         CleanupStack::PopAndDestroy( &in );
  2238         }
  2238         }
  2239     CleanupStack::PopAndDestroy( store );
  2239     CleanupStack::PopAndDestroy( store );
  2260         while ( !err ) 
  2260         while ( !err ) 
  2261             {
  2261             {
  2262             TRAP( err, id = in.ReadInt32L() ); // will leave with KErrEof
  2262             TRAP( err, id = in.ReadInt32L() ); // will leave with KErrEof
  2263             if ( !err )
  2263             if ( !err )
  2264                 {
  2264                 {
  2265                 previousIds.Append( id );
  2265                 previousIds.AppendL( id );
  2266                 }
  2266                 }
  2267             }
  2267             }
  2268         CleanupStack::PopAndDestroy( &in );
  2268         CleanupStack::PopAndDestroy( &in );
  2269         }
  2269         }
  2270     
  2270     
  2307         while ( !err )
  2307         while ( !err )
  2308             {
  2308             {
  2309             TRAP( err, id = in.ReadUint32L() );  // will leave with KErrEof
  2309             TRAP( err, id = in.ReadUint32L() );  // will leave with KErrEof
  2310             if ( !err )
  2310             if ( !err )
  2311                 {
  2311                 {
  2312                 aEntryIds.Append( id );
  2312                 aEntryIds.AppendL( id );
  2313                 }
  2313                 }
  2314             }
  2314             }
  2315         CleanupStack::PopAndDestroy( &in );
  2315         CleanupStack::PopAndDestroy( &in );
  2316         }
  2316         }
  2317     CleanupStack::PopAndDestroy( store );
  2317     CleanupStack::PopAndDestroy( store );
  2338         while ( !err ) 
  2338         while ( !err ) 
  2339             {
  2339             {
  2340             TRAP( err, id = in.ReadUint32L() ); // will leave with KErrEof
  2340             TRAP( err, id = in.ReadUint32L() ); // will leave with KErrEof
  2341             if ( !err )
  2341             if ( !err )
  2342                 {
  2342                 {
  2343                 previousIds.Append( id );
  2343                 previousIds.AppendL( id );
  2344                 }
  2344                 }
  2345             }
  2345             }
  2346         CleanupStack::PopAndDestroy( &in );
  2346         CleanupStack::PopAndDestroy( &in );
  2347         }
  2347         }
  2348     
  2348