Skip to content
Permalink
Browse files
Changed QgsCoordinateTransform default constructor to not initialize …
…SRS.

This was causing that layers without SRS got always a valid SRS before
they could get validated with project, global or selected SRS.


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5002 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed Mar 11, 2006
1 parent 1f8785f commit d87b3a1
Showing 1 changed file with 1 addition and 1 deletion.
@@ -25,7 +25,7 @@
// Qt4-only includes to go here
#include <QTextOStream>

QgsCoordinateTransform::QgsCoordinateTransform( ) : QObject(), mSourceSRS(0), mDestSRS(0)
QgsCoordinateTransform::QgsCoordinateTransform( ) : QObject(), mSourceSRS(), mDestSRS()

{
}

0 comments on commit d87b3a1

Please sign in to comment.