Skip to content
Permalink
Browse files
fix #2680
git-svn-id: http://svn.osgeo.org/qgis/trunk@13404 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 27, 2010
1 parent b4d4746 commit 46b8666
Showing 1 changed file with 3 additions and 3 deletions.
@@ -2510,7 +2510,7 @@ bool QgsPostgresProvider::deleteAttributes( const QgsAttributeIds& ids )
{
bool returnvalue = true;

if ( !isQuery )
if ( isQuery )
return false;

if ( !connectRW() )
@@ -2558,7 +2558,7 @@ bool QgsPostgresProvider::changeAttributeValues( const QgsChangedAttributesMap &
{
bool returnvalue = true;

if ( !isQuery )
if ( isQuery )
return false;

if ( !connectRW() )
@@ -2642,7 +2642,7 @@ bool QgsPostgresProvider::changeGeometryValues( QgsGeometryMap & geometry_map )
{
QgsDebugMsg( "entering." );

if ( !isQuery )
if ( isQuery )
return false;

if ( !connectRW() )

0 comments on commit 46b8666

Please sign in to comment.