Skip to content

Commit ee95b95

Browse files
author
jef
committedMar 13, 2008
fix gcc compile error
git-svn-id: http://svn.osgeo.org/qgis/trunk@8219 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 93284cc commit ee95b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/postgres/qgspostgresprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1693,7 +1693,7 @@ QVariant QgsPostgresProvider::getDefaultValue(int fieldId)
16931693
" AND table_name = " + quotedValue(mTableName) +
16941694
" AND column_name = " + quotedValue(fieldName) );
16951695

1696-
QVariant defaultValue = QString::null;
1696+
QVariant defaultValue(QString::null);
16971697

16981698
PGresult* result = PQexec(connection, sql.toUtf8());
16991699

0 commit comments

Comments
 (0)
Please sign in to comment.