Changeset 11184

Show
Ignore:
Timestamp:
04/02/07 20:51:58 (2 years ago)
Author:
mloskot
Message:

Added forward of GRPGLayer::GetFeature?() call to impl. in base class.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gdal/ogr/ogrsf_frmts/pg/ogrpglayer.cpp

    r11041 r11184  
    613613 
    614614{ 
    615     /* 
    616      * TODO: This should be implemented! 
    617      * See related Bug 1445 
    618      * http://bugzilla.remotesensing.org/show_bug.cgi?id=1445 
    619      */ 
    620  
    621     return NULL; 
     615    // Forward call to based class instead of removing this stub. 
     616    // See discussion here: http://trac.osgeo.org/gdal/ticket/1445 
     617 
     618    return OGRLayer::GetFeature( nFeatureId ); 
    622619} 
    623620