Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #3045 from mhugent/convert_geometry_2
Convert geometry 2
- Loading branch information
Showing
with
224 additions
and 3 deletions.
- +6 −0 python/core/geometry/qgsabstractgeometryv2.sip
- +4 −0 python/core/geometry/qgslinestringv2.sip
- +4 −0 python/core/geometry/qgsmultilinestringv2.sip
- +4 −0 python/core/geometry/qgsmultipolygonv2.sip
- +4 −0 python/core/geometry/qgspolygonv2.sip
- +4 −0 python/core/qgsvectordataprovider.sip
- +6 −0 src/core/geometry/qgsabstractgeometryv2.h
- +9 −0 src/core/geometry/qgscompoundcurvev2.cpp
- +5 −0 src/core/geometry/qgsgeometry.cpp
- +8 −0 src/core/geometry/qgslinestringv2.cpp
- +4 −0 src/core/geometry/qgslinestringv2.h
- +11 −0 src/core/geometry/qgsmultilinestringv2.cpp
- +4 −0 src/core/geometry/qgsmultilinestringv2.h
- +10 −0 src/core/geometry/qgsmultipolygonv2.cpp
- +4 −0 src/core/geometry/qgsmultipolygonv2.h
- +12 −0 src/core/geometry/qgspolygonv2.cpp
- +4 −0 src/core/geometry/qgspolygonv2.h
- +104 −0 src/core/qgsvectordataprovider.cpp
- +4 −0 src/core/qgsvectordataprovider.h
- +6 −0 src/core/qgsvectorlayereditbuffer.cpp
- +0 −1 src/core/qgsvectorlayereditbuffer.h
- +7 −2 src/providers/postgres/qgspostgresprovider.cpp
@mhugent - please don't forget to add unit tests for this - see the comment immediately below this function!