mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +00:00
Fix filter filter regex
Now the external material file dialog shows the file types defined in the template again. Before this fix it did only show "All files (*)". I don't know what the old syntax was supposed to do or whether it ever worked with boost::regex, but with std::regex the new one is correct.
This commit is contained in:
parent
72837fec5c
commit
646d47ae93
@ -549,7 +549,7 @@ FileFilterList::FileFilterList(docstring const & qt_style_filter)
|
|||||||
|
|
||||||
// Everything from the start of the input to
|
// Everything from the start of the input to
|
||||||
// the start of the match.
|
// the start of the match.
|
||||||
parse_filter(string(what[-1].first, what[-1].second));
|
parse_filter(string(it, what[0].first));
|
||||||
|
|
||||||
// Increment the iterator to the end of the match.
|
// Increment the iterator to the end of the match.
|
||||||
it += distance(it, what[0].second);
|
it += distance(it, what[0].second);
|
||||||
|
Loading…
Reference in New Issue
Block a user