Sort route-templates by name
This commit is contained in:
parent
59c856c2c0
commit
11ef82954e
@ -134,6 +134,12 @@ find_session_templates (vector<TemplateInfo>& template_names, bool read_xml)
|
||||
std::sort(template_names.begin(), template_names.end());
|
||||
}
|
||||
|
||||
struct TemplateInfoSorter {
|
||||
bool operator () (TemplateInfo const& a, TemplateInfo const& b) {
|
||||
return a.name < b.name;
|
||||
}
|
||||
};
|
||||
|
||||
void
|
||||
find_route_templates (vector<TemplateInfo>& template_names)
|
||||
{
|
||||
@ -182,6 +188,8 @@ find_route_templates (vector<TemplateInfo>& template_names)
|
||||
|
||||
template_names.push_back (rti);
|
||||
}
|
||||
|
||||
std::sort (template_names.begin(), template_names.end (), TemplateInfoSorter ());
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user