fix build

This commit is contained in:
Ronan Abhamon 2017-09-12 17:48:30 +02:00
parent 4d85643a9c
commit 093ae07e79

View file

@ -43,7 +43,7 @@ Content::Content (const Content &src) : ClonableObject(*new ContentPrivate) {
d->contentType = src.getContentType();
}
Content::Content (Content &&src) {
Content::Content (Content &&src) : ClonableObject(*new ContentPrivate) {
L_D(Content);
d->body = move(src.getPrivate()->body);
d->contentType = move(src.getPrivate()->contentType);