Fix classes.xml sorting

Make methods, signals, theme items and constants sort correctly
This commit is contained in:
George Marques 2016-06-21 17:20:34 -03:00
parent e69e50040b
commit 9bde4e5652
No known key found for this signature in database
GPG key ID: 046BD46A3201E43D
2 changed files with 29 additions and 0 deletions

View file

@ -67,6 +67,9 @@ public:
String name;
String type;
String description;
bool operator<(const PropertyDoc& p_prop) const {
return name<p_prop.name;
}
};
struct ClassDoc {