Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bug fix:
- found incorrect DB-path handling in 'add spatialite new connection'


git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11822 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
esseffe committed Oct 20, 2009
1 parent 3dc43fe commit d843c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsspatialitesourceselect.cpp
Expand Up @@ -319,7 +319,7 @@ void QgsSpatiaLiteSourceSelect::addNewConnection()
QString myPath = myFI.path();
QString myName = myFI.fileName();

handle = openSpatiaLiteDb( myFI.canonicalPath() );
handle = openSpatiaLiteDb( myFI.canonicalFilePath() );
if ( handle )
{
// OK, this one is a valid SpatiaLite DB
Expand Down

0 comments on commit d843c18

Please sign in to comment.