Changes between Version 6 and Version 7 of rfc13_createfeatures


Ignore:
Timestamp:
May 16, 2007, 12:41:48 AM (17 years ago)
Author:
Kosta
Comment:

fixed interface for DeleteFeatures()

Legend:

Unmodified
Added
Removed
Modified
  • rfc13_createfeatures

    v6 v7  
    6969{{{
    7070OGRErr OGRLayer::DeleteFeatures(
    71     OGRFeature **papoFeatures,
    72     int iFeatureCount
     71    long *panFIDs,
     72    int iFIDCount
    7373) {
    74     for(int i = 0; i < iFeatureCount; ++i) {
    75         OGRErr error = DeleteFeature( papoFeatures[i] );
     74    for(int i = 0; i < iFIDCount; ++i) {
     75        OGRErr error = DeleteFeature( panFIDs[i] );
    7676        if( error != OGRERR_NONE ) return error;
    7777    }