mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Remove parameters from PBD::find_files_matching_regex
The only users of this API always used the same options so just remove them.
This commit is contained in:
parent
769ee5c1f2
commit
0189ad7e29
3 changed files with 9 additions and 17 deletions
|
|
@ -205,10 +205,7 @@ regexp_filter (const string& str, void *arg)
|
|||
void
|
||||
find_files_matching_regex (vector<string>& result,
|
||||
const std::string& dirpath,
|
||||
const std::string& regexp,
|
||||
bool match_fullpath, bool return_fullpath,
|
||||
long limit,
|
||||
bool recurse)
|
||||
const std::string& regexp)
|
||||
{
|
||||
int err;
|
||||
char msg[256];
|
||||
|
|
@ -230,8 +227,7 @@ find_files_matching_regex (vector<string>& result,
|
|||
|
||||
find_files_matching_filter (result, dirpath,
|
||||
regexp_filter, &compiled_pattern,
|
||||
match_fullpath, return_fullpath,
|
||||
limit, recurse);
|
||||
true, true, -1, false);
|
||||
|
||||
regfree (&compiled_pattern);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue