IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4392 for trunk/psLib/test


Ignore:
Timestamp:
Jun 24, 2005, 4:02:05 PM (21 years ago)
Author:
drobbin
Message:

changed psFreeFcn to psFreeFunc

Location:
trunk/psLib/test
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/astronomy/tst_psAstrometry01.c

    r4229 r4392  
    55*  @author GLG, MHPCC
    66*
    7 *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    8 *  @date $Date: 2005-06-13 20:34:51 $
     7*  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     8*  @date $Date: 2005-06-25 02:02:05 $
    99*
    1010* XXX: Must test
     
    112112{\
    113113    NAME = (psPlaneTransform *) psAlloc(sizeof(psPlaneTransform)); \
    114     psMemSetDeallocator(NAME, (psFreeFcn) psPlaneTransformFree); \
     114    psMemSetDeallocator(NAME, (psFreeFunc) psPlaneTransformFree); \
    115115    NAME->x = psDPolynomial2DAlloc(2, 2, PS_POLYNOMIAL_ORD); \
    116116    NAME->y = psDPolynomial2DAlloc(2, 2, PS_POLYNOMIAL_ORD); \
     
    122122{\
    123123    NAME = (psPlaneDistort *) psAlloc(sizeof(psPlaneDistort)); \
    124     psMemSetDeallocator(NAME, (psFreeFcn) psPlaneDistortFree); \
     124    psMemSetDeallocator(NAME, (psFreeFunc) psPlaneDistortFree); \
    125125    NAME->x = psDPolynomial4DAlloc(2, 2, 2, 2, PS_POLYNOMIAL_ORD); \
    126126    NAME->y = psDPolynomial4DAlloc(2, 2, 2, 2, PS_POLYNOMIAL_ORD); \
  • trunk/psLib/test/collections/tst_psHash01.c

    r3690 r4392  
    2121{
    2222    ID *id = psAlloc(sizeof(ID));
    23     psMemSetDeallocator(id,(psFreeFcn)IdFree);
     23    psMemSetDeallocator(id,(psFreeFunc)IdFree);
    2424    id->name = psStringCopy(name);
    2525
  • trunk/psLib/test/collections/tst_psHash02.c

    r3690 r4392  
    2424{
    2525    ID *id = psAlloc(sizeof(ID));
    26     psMemSetDeallocator(id,(psFreeFcn)IdFree);
     26    psMemSetDeallocator(id,(psFreeFunc)IdFree);
    2727    id->name = psStringCopy(name);
    2828
  • trunk/psLib/test/collections/tst_psHash03.c

    r3690 r4392  
    2626
    2727    id = psAlloc(sizeof(ID));
    28     psMemSetDeallocator(id,(psFreeFcn)IdFree);
     28    psMemSetDeallocator(id,(psFreeFunc)IdFree);
    2929
    3030    id->name = psStringCopy(name);
  • trunk/psLib/test/collections/tst_psHash04.c

    r3690 r4392  
    1919{
    2020    ID *id = psAlloc(sizeof(ID));
    21     psMemSetDeallocator(id,(psFreeFcn)IdFree);
     21    psMemSetDeallocator(id,(psFreeFunc)IdFree);
    2222
    2323    id->name = psStringCopy(name);
Note: See TracChangeset for help on using the changeset viewer.