Skip to content

Commit

Permalink
fix #1672
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@10692 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed May 1, 2009
1 parent a94d57f commit 50c9b44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/qgsdatasourceuri.cpp
Expand Up @@ -423,12 +423,12 @@ void QgsDataSourceURI::setConnection( const QString &host,
void QgsDataSourceURI::setDataSource( const QString &schema,
const QString &table,
const QString &geometryColumn,
const QString &keyColumn,
const QString &sql )
const QString &sql,
const QString &keyColumn)
{
mSchema = schema;
mTable = table;
mGeometryColumn = geometryColumn;
mKeyColumn = keyColumn;
mSql = sql;
mKeyColumn = keyColumn;
}

0 comments on commit 50c9b44

Please sign in to comment.