Skip to content

Commit

Permalink
- filebrowser: add size() and getFilter() members
Browse files Browse the repository at this point in the history
  • Loading branch information
TangoCash authored and dbt1 committed Dec 21, 2017
1 parent 91ee69f commit 97327f0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/filebrowser.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ class CFileFilter
return false;
};
void Clear(void) { Filter.clear();};
size_t size(void) { return Filter.size();};
std::string getFilter(int i) { return Filter.at(i);};
};
//------------------------------------------------------------------------

Expand Down

0 comments on commit 97327f0

Please sign in to comment.