fix Assignment copy constructor warning

This commit is contained in:
Brad Hefta-Gaub 2015-12-17 18:51:27 -08:00
parent 0b781a3589
commit a7824a06d0

View file

@ -91,7 +91,7 @@ Assignment::Assignment(ReceivedMessage& message) :
#endif
Assignment::Assignment(const Assignment& otherAssignment) {
Assignment::Assignment(const Assignment& otherAssignment) : QObject() {
_uuid = otherAssignment._uuid;
_command = otherAssignment._command;
_type = otherAssignment._type;