comparison plugin/transform/TransformDescription.h @ 358:9203b82a8c53

* better handling of cases with more than one copy of the same plugin in different libraries -- a bit mad, but it happened to me
author Chris Cannam
date Wed, 09 Jan 2008 17:09:44 +0000
parents d7c41483af8f
children
comparison
equal deleted inserted replaced
357:b92513201610 358:9203b82a8c53
64 QString maker; 64 QString maker;
65 QString units; 65 QString units;
66 bool configurable; 66 bool configurable;
67 67
68 bool operator<(const TransformDescription &od) const { 68 bool operator<(const TransformDescription &od) const {
69 return (name < od.name); 69 return
70 (name < od.name) ||
71 (name == od.name && identifier < od.identifier);
70 }; 72 };
71 }; 73 };
72 74
73 typedef std::vector<TransformDescription> TransformList; 75 typedef std::vector<TransformDescription> TransformList;
74 76