Use std algorithme in view/grid

This commit is contained in:
2011-08-16 18:54:24 +02:00
parent 08ba72664c
commit a4179804be
3 changed files with 33 additions and 37 deletions

View File

@@ -40,6 +40,11 @@ struct Operation {
bool meta;
bool _virtual;
std::vector<wxString> childs;
bool operator == (const wxString& opId)
{
return id == opId;
}
} ;
bool sortOperations(const Operation& op1, const Operation& op2);