[QGIS Commit] r8298 - branches/ogr-plugin-branch/src/core

svn_qgis at osgeo.org svn_qgis at osgeo.org
Fri Mar 28 17:45:43 EDT 2008


Author: gcontreras
Date: 2008-03-28 17:45:43 -0400 (Fri, 28 Mar 2008)
New Revision: 8298

Modified:
   branches/ogr-plugin-branch/src/core/qgsdatasourceuri.cpp
Log:
fix for type parameter in uri being ignored

Modified: branches/ogr-plugin-branch/src/core/qgsdatasourceuri.cpp
===================================================================
--- branches/ogr-plugin-branch/src/core/qgsdatasourceuri.cpp	2008-03-28 21:44:10 UTC (rev 8297)
+++ branches/ogr-plugin-branch/src/core/qgsdatasourceuri.cpp	2008-03-28 21:45:43 UTC (rev 8298)
@@ -95,6 +95,8 @@
         }
       } else if( pname=="service" ) {
         QgsDebugMsg("service keyword ignored");
+      } else if(pname=="type") {
+        mType = pval;  
       } else if(pname=="user") {
         mUsername = pval;
       } else if(pname=="password") {



More information about the QGIS-commit mailing list