From 093ae07e7929c5f8e2c44225d3348e1a5044bf62 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Tue, 12 Sep 2017 17:48:30 +0200 Subject: [PATCH] fix build --- src/content/content.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/content.cpp b/src/content/content.cpp index 021032f09..9e89f7afa 100644 --- a/src/content/content.cpp +++ b/src/content/content.cpp @@ -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);