Skip to content

Commit

Permalink
Merge pull request #539 from matthias-kuhn/fix-7639
Browse files Browse the repository at this point in the history
[Fix #7639] Values for new attributes not saved (Blocker)
  • Loading branch information
jef-n committed Apr 23, 2013
2 parents 1176bbc + 0b780b0 commit 6d046fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsfield.cpp
Expand Up @@ -42,7 +42,7 @@ QgsField::~QgsField()

bool QgsField::operator==( const QgsField& other ) const
{
return (( mName == other.mName ) && ( mType == other.mType ) && ( mTypeName == other.mTypeName )
return (( mName == other.mName ) && ( mType == other.mType )
&& ( mLength == other.mLength ) && ( mPrecision == other.mPrecision ) );
}

Expand Down

0 comments on commit 6d046fc

Please sign in to comment.