comparison 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
comparison
equal deleted inserted replaced
975:d5404b8421b4 976:45e95de8b11d
51 EffectsData, // e.g. control output of ladspa plugin 51 EffectsData, // e.g. control output of ladspa plugin
52 Generator, // e.g. audio out of ladspa plugin with no audio in 52 Generator, // e.g. audio out of ladspa plugin with no audio in
53 UnknownType 53 UnknownType
54 }; 54 };
55 55
56 TransformDescription() { } 56 TransformDescription() :
57 type(UnknownType), configurable(false) { }
57 TransformDescription(Type _type, QString _category, 58 TransformDescription(Type _type, QString _category,
58 TransformId _identifier, QString _name, 59 TransformId _identifier, QString _name,
59 QString _friendlyName, QString _description, 60 QString _friendlyName, QString _description,
60 QString _longDescription, 61 QString _longDescription,
61 QString _maker, QString _units, bool _configurable) : 62 QString _maker, QString _units, bool _configurable) :