aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2016-08-23 11:26:49 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2016-08-23 15:30:04 +0000
commitf9ab8a7915014b2b8eab7e9379c5cdadd8a8ec70 (patch)
tree1164ba32a6a51e62affa7d7c8a2643195f8e6473
parent60b28789ebbab72ed9232643a8216264f7924ddf (diff)
Fix ProductData's equality operator
Change-Id: Id73f8eaf285f030fb5164b72cf73dacdaccee437 Reviewed-by: Jake Petroules <jake.petroules@qt.io>
-rw-r--r--src/lib/corelib/api/projectdata.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/corelib/api/projectdata.cpp b/src/lib/corelib/api/projectdata.cpp
index 55d7f7c9e..2cd996d22 100644
--- a/src/lib/corelib/api/projectdata.cpp
+++ b/src/lib/corelib/api/projectdata.cpp
@@ -572,6 +572,7 @@ bool operator==(const ProductData &lhs, const ProductData &rhs)
&& lhs.groups() == rhs.groups()
&& lhs.targetArtifacts() == rhs.targetArtifacts()
&& lhs.properties() == rhs.properties()
+ && lhs.moduleProperties() == rhs.moduleProperties()
&& lhs.isEnabled() == rhs.isEnabled();
}