Changeset 7587

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

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

Files:

Legend:

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

    r7544 r7587  
    24632463     msTranslateWMS2Mapserv(names, values, &numentries); 
    24642464 
    2465      msObj->Map = map; 
     2465     msObj->map = map; 
    24662466     msObj->request->ParamNames = names; 
    24672467     msObj->request->ParamValues = values; 
    24682468     msObj->Mode = QUERY; 
    24692469     msObj->request->NumParams = numentries; 
    2470      msObj->MapPnt.x = point.x; 
    2471      msObj->MapPnt.y = point.y; 
    2472  
    2473      if (query_status == MS_NOTFOUND && msObj->Map->web.empty) 
     2470     msObj->mappnt.x = point.x; 
     2471     msObj->mappnt.y = point.y; 
     2472 
     2473     if (query_status == MS_NOTFOUND && msObj->map->web.empty) 
    24742474     { 
    2475          if(msReturnURL(msObj, msObj->Map->web.empty, BROWSE) != MS_SUCCESS) 
     2475         if(msReturnURL(msObj, msObj->map->web.empty, BROWSE) != MS_SUCCESS) 
    24762476             return msWMSException(map, nVersion, NULL); 
    24772477     } 
    2478      else if (msReturnTemplateQuery(msObj, (char*)pszMimeType,NULL) != MS_SUCCESS) 
     2478     else if (msReturnTemplateQuery(msObj, (char*)pszMimeType, NULL) != MS_SUCCESS) 
    24792479         return msWMSException(map, nVersion, NULL); 
    24802480 
    24812481     /* We don't want to free the map, and param names/values since they */ 
    24822482     /* belong to the caller, set them to NULL before freeing the mapservObj */ 
    2483      msObj->Map = NULL; 
     2483     msObj->map = NULL; 
    24842484     msObj->request->ParamNames = NULL; 
    24852485     msObj->request->ParamValues = NULL;