mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-21 16:50:53 +01:00
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:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user