summaryrefslogtreecommitdiffstats
path: root/common/domain
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2017-02-16 10:29:27 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2017-02-16 10:39:59 +0100
commit768c1077b0d226d832f34904e929c2462eca158f (patch)
tree62ebe65b534ce4028ff24f29a0824540810179ff /common/domain
parent80f8c4a48b8cbb359c4efdb9a13485bf86b4d1ed (diff)
downloadsink-768c1077b0d226d832f34904e929c2462eca158f.tar.gz
sink-768c1077b0d226d832f34904e929c2462eca158f.zip
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.
Diffstat (limited to 'common/domain')
-rw-r--r--common/domain/applicationdomaintype.h2
1 files changed, 1 insertions, 1 deletions
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)
280 280
281inline QDebug operator<< (QDebug d, const BLOB &blob) 281inline QDebug operator<< (QDebug d, const BLOB &blob)
282{ 282{
283 d << blob.value; 283 d << blob.value << "external:" << blob.isExternal ;
284 return d; 284 return d;
285} 285}
286 286