Fix classes.xml sorting
Make methods, signals, theme items and constants sort correctly
This commit is contained in:
parent
e69e50040b
commit
9bde4e5652
2 changed files with 29 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue