added sorting to gamelistctrl (thanks a lot to gigaherz)

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@547 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2008-09-17 05:57:43 +00:00
parent e4ca998ff8
commit afc6bf15ab
8 changed files with 504 additions and 62 deletions

View File

@ -47,11 +47,6 @@ class CISOFile
const wxImage& GetImage() const {return(m_Image);}
bool operator < (const CISOFile &other) const {
// HACK - they end up in reverse order in the list view
return strcasecmp(m_Name.c_str(), other.m_Name.c_str()) < 0;
}
private:
std::string m_FileName;