IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9543


Ignore:
Timestamp:
Oct 13, 2006, 12:25:45 PM (20 years ago)
Author:
Paul Price
Message:

Wrong name: psArrayRemoveByIndex --> psArrayRemoveIndex

Location:
trunk/psLib/src/types
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/types/psArray.c

    r9538 r9543  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2006-10-13 21:13:48 $
     11 *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2006-10-13 22:24:29 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    157157}
    158158
    159 bool psArrayRemoveByIndex(psArray* array,
    160                           long index)
     159bool psArrayRemoveIndex(psArray* array,
     160                        long index)
    161161{
    162162    PS_ASSERT_PTR_NON_NULL(array, false);
  • trunk/psLib/src/types/psArray.h

    r9538 r9543  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-10-13 21:13:48 $
     13 *  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-10-13 22:24:29 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    118118 *
    119119 */
    120 bool psArrayRemoveByIndex(
     120bool psArrayRemoveIndex(
    121121    psArray* array,                    ///< array to operate on
    122122    long index                      ///< the element to remove
  • trunk/psLib/src/types/psMetadataConfig.c

    r9538 r9543  
    1010*  @author Eric Van Alst, MHPCC
    1111*
    12 *  @version $Revision: 1.93 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2006-10-13 21:13:48 $
     12*  @version $Revision: 1.94 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2006-10-13 22:25:45 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    11181118                } else {
    11191119                    // Remove lower info level
    1120                     if(!psArrayRemoveByIndex(levelArray, *level)) {
     1120                    if(!psArrayRemoveIndex(levelArray, *level)) {
    11211121                        psFree(keyName);
    11221122                        return false;
Note: See TracChangeset for help on using the changeset viewer.