From 768c1077b0d226d832f34904e929c2462eca158f Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Thu, 16 Feb 2017 10:29:27 +0100 Subject: Remember whether a blob property is external or not. ...we used to accidentally move external blobs after the property was lost when storing the modificatoin in the queue. --- common/domain/applicationdomaintype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/domain') diff --git a/common/domain/applicationdomaintype.h b/common/domain/applicationdomaintype.h index 98b7de7..7380c04 100644 --- a/common/domain/applicationdomaintype.h +++ b/common/domain/applicationdomaintype.h @@ -280,7 +280,7 @@ inline QDebug operator<< (QDebug d, const Reference &ref) inline QDebug operator<< (QDebug d, const BLOB &blob) { - d << blob.value; + d << blob.value << "external:" << blob.isExternal ; return d; } -- cgit v1.2.3