From c5acb79239b7443174814f33725da5acabfa0c3f Mon Sep 17 00:00:00 2001 From: xavierqet Date: Mon, 15 Oct 2007 17:21:15 +0000 Subject: [PATCH] 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 --- conductorproperties.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/conductorproperties.cpp b/conductorproperties.cpp index 7df16bb89..088d41b7b 100644 --- a/conductorproperties.cpp +++ b/conductorproperties.cpp @@ -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 {