Mercurial > hg > svcore
diff transform/TransformDescription.h @ 976:45e95de8b11d
Fix some (probably benign) uninitialised members (from coverity scan)
author | Chris Cannam |
---|---|
date | Wed, 03 Sep 2014 11:27:23 +0100 |
parents | c45e6c6722e0 |
children | 9c14dee72329 |
line wrap: on
line diff
--- a/transform/TransformDescription.h Wed Sep 03 11:26:21 2014 +0100 +++ b/transform/TransformDescription.h Wed Sep 03 11:27:23 2014 +0100 @@ -53,7 +53,8 @@ UnknownType }; - TransformDescription() { } + TransformDescription() : + type(UnknownType), configurable(false) { } TransformDescription(Type _type, QString _category, TransformId _identifier, QString _name, QString _friendlyName, QString _description,