Skip to content

Commit 46b8666

Browse files
author
jef
committedApr 27, 2010
fix #2680
git-svn-id: http://svn.osgeo.org/qgis/trunk@13404 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent b4d4746 commit 46b8666

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/providers/postgres/qgspostgresprovider.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ bool QgsPostgresProvider::deleteAttributes( const QgsAttributeIds& ids )
25102510
{
25112511
bool returnvalue = true;
25122512

2513-
if ( !isQuery )
2513+
if ( isQuery )
25142514
return false;
25152515

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

2561-
if ( !isQuery )
2561+
if ( isQuery )
25622562
return false;
25632563

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

2645-
if ( !isQuery )
2645+
if ( isQuery )
26462646
return false;
26472647

26482648
if ( !connectRW() )

0 commit comments

Comments
 (0)
Please sign in to comment.