Changeset 7588

Show
Ignore:
Timestamp:
05/13/08 09:23:08 (2 months ago)
Author:
sdlime
Message:

Missed some changes to mapservObj member names in maptile.c.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/mapserver/maptile.c

    r7557 r7588  
    4545  ** Ensure all the LAYERs have a projection.  
    4646  */   
    47   if( msTileSetProjections(msObj->Map) != 0 ) { 
     47  if( msTileSetProjections(msObj->map) != 0 ) { 
    4848    return(MS_FAILURE); 
    4949  } 
     
    5757    return(MS_FAILURE); /* Huh? No mode? */ 
    5858  } 
    59   if( msLoadProjectionString(&(msObj->Map->projection), outProjStr) != 0 ) { 
     59  if( msLoadProjectionString(&(msObj->map->projection), outProjStr) != 0 ) { 
    6060    msSetError(MS_CGIERR, "Unable to load projection string.", "msTileSetup()"); 
    6161    return(MS_FAILURE); 
     
    130130#ifdef USE_TILE_API  
    131131   
    132   mapObj *map = msObj->Map; 
     132  mapObj *map = msObj->map; 
    133133  double        dx, dy; 
    134134