Fix compilation with dummy font file lister (i.e. without FT2/FC.)

Originally committed to SVN as r6532.
This commit is contained in:
Niels Martin Hansen 2012-03-03 01:51:14 +00:00
parent 2ddde60efd
commit 95fe56d41b
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class FontsCollectorThread : public wxThread {
#else
AppendText(_("Aegisub was built without any font file listers enabled"), 2);
struct DummyLister : public FontFileLister {
std::vector<wxString> GetFontPaths(wxString const&, int, bool) { return std::vector<wxString>(); }
std::vector<wxString> GetFontPaths(wxString const&, int, bool, std::set<wxUniChar> const&) { return std::vector<wxString>(); }
} lister;
#endif
std::vector<wxString> paths = FontCollector(callback, lister).GetFontPaths(subs->Line);