Skip to content
Permalink
Browse files
Show info on QgsDebug if srs db is not found (and path where it was b…
…eing sought)

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@5818 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Sep 12, 2006
1 parent c4c77f1 commit 4249cc5
Showing 1 changed file with 12 additions and 0 deletions.
@@ -292,6 +292,11 @@ QString QgsProjectionSelector::getCurrentProj4String()
std::cout << " QgsProjectionSelector::getCurrentProj4String : users qgis.db not found" << std::endl;
return NULL;
}
else
{
QgsDebug(myDatabaseFileName);
QgsDebug("File not found");
}
}
else //must be a system projection then
{
@@ -891,6 +896,8 @@ void QgsProjectionSelector::on_pbnFind_clicked()
myFileInfo.setFile(myDatabaseFileName);
if ( !myFileInfo.exists( ) ) //its not critical if this happens
{
qDebug(myDatabaseFileName);
qDebug("User db does not exist");
return ;
}
myResult = sqlite3_open(myDatabaseFileName.toLocal8Bit().data(), &myDatabase);
@@ -966,6 +973,11 @@ long QgsProjectionSelector::getLargestSRSIDMatch(QString theSql)
}
}
}
else
{
QgsDebug(myDatabaseFileName);
QgsDebug("File not found");
}
//only bother looking in srs.db if it wasnt found above

myResult = sqlite3_open(mSrsDatabaseFileName.toLocal8Bit().data(), &myDatabase);

0 comments on commit 4249cc5

Please sign in to comment.