Refactor GameListCtrl

This commit is contained in:
spycrab
2017-04-28 17:35:23 +02:00
parent 8028564a07
commit 303b54a3a5
2 changed files with 46 additions and 64 deletions

View File

@ -67,6 +67,8 @@ public:
#endif
private:
struct ColumnInfo;
void ReloadList();
void ClearIsoFiles() { m_ISOFiles.clear(); }
@ -117,4 +119,6 @@ private:
int last_sort;
wxSize lastpos;
wxEmuStateTip* toolTip;
std::vector<ColumnInfo> m_columns;
};