IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 9539 for trunk/ippTools/src


Ignore:
Timestamp:
Oct 13, 2006, 11:22:09 AM (20 years ago)
Author:
Paul Price
Message:

Fixing psLib APIs following clean-up.

Location:
trunk/ippTools/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/chiptool.c

    r9392 r9539  
    113113                if (strcmp(rawFrame->exposure->exp_tag,
    114114                           pendingFrame->exposure->exp_tag) == 0) {
    115                     psArrayRemove(rawFrames, rawFrame);
     115                    psArrayRemoveData(rawFrames, rawFrame);
    116116                    // dec the counter as the array just got shorter
    117117                    // and we don't want to skip elemnts
     
    132132                    if (strcmp(rawFrame->exposure->exp_tag,
    133133                               doneFrame->exposure->exp_tag) == 0) {
    134                         psArrayRemove(rawFrames, rawFrame);
     134                        psArrayRemoveData(rawFrames, rawFrame);
    135135                        // dec the counter as the array just got shorter
    136136                        // and we don't want to skip elemnts
  • trunk/ippTools/src/dettool.c

    r9494 r9539  
    387387            return false;
    388388        }
    389         psMetadataRemove(md, 0, "det_id");
     389        psMetadataRemoveKey(md, "det_id");
    390390        psString det_idStr = psDBIntToString((psU64)det_id);
    391391        psMetadataAddStr(mds->data[i], PS_LIST_HEAD, "det_id", 0, NULL, det_idStr);
  • trunk/ippTools/src/pzgetexp.c

    r9392 r9539  
    9494                if (strcmp(newSummitExp->exp_id,
    9595                           summitExp->exp_id) == 0) {
    96                     psArrayRemove(newSummitExps, newSummitExp);
     96                    psArrayRemoveData(newSummitExps, newSummitExp);
    9797                    // dec the counter as the array just got shorter
    9898                    // and we don't want to skip elemnts
  • trunk/ippTools/src/pzgetimfiles.c

    r9392 r9539  
    8383                if (strcmp(newImfile->exp_id,
    8484                           pendingImfile->exp_id) == 0) {
    85                     psArrayRemove(newImfiles, newImfile);
     85                    psArrayRemoveData(newImfiles, newImfile);
    8686                    // dec the counter as the array just got shorter
    8787                    // and we don't want to skip elemnts
  • trunk/ippTools/src/pztool.c

    r9392 r9539  
    9797                newExpRow *newExp = new->data[j];
    9898                if (strcmp(summitExp->exp_id, newExp->exp_id) == 0) {
    99                     psArrayRemove(summit, summitExp);
     99                    psArrayRemoveData(summit, summitExp);
    100100                    // dec the counter as the array just got shorter
    101101                    //and we don't want to skip elemnts
Note: See TracChangeset for help on using the changeset viewer.