Correction dans le code pour contenter gcc

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@181 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavierqet
2007-10-15 17:21:15 +00:00
parent 4786911022
commit c5acb79239

View File

@@ -219,7 +219,11 @@ int ConductorProperties::operator==(const ConductorProperties &other) {
}
int ConductorProperties::operator!=(const ConductorProperties &other) {
return(!(other == (*this)));
return(
other.type != type ||\
other.text != text ||\
other.singleLineProperties != singleLineProperties
);
}
int SingleLineProperties::operator==(const SingleLineProperties &other) const {