mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +02:00
fix Assignment copy constructor warning
This commit is contained in:
parent
0b781a3589
commit
a7824a06d0
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue