Showing with 1 addition and 1 deletion.
  1. +1 −1 src/core/qgsfield.cpp
2 changes: 1 addition & 1 deletion src/core/qgsfield.cpp
Original file line number Diff line number Diff line change
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