mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
Add/Update docs in pbd/file_utils.h
This commit is contained in:
parent
851db83fc4
commit
6d0cce528e
2 changed files with 40 additions and 13 deletions
|
|
@ -259,10 +259,10 @@ find_paths_matching_filter (vector<string>& result,
|
|||
const Searchpath& paths,
|
||||
bool (*filter)(const string &, void *),
|
||||
void *arg,
|
||||
bool match_fullpath, bool return_fullpath,
|
||||
bool pass_fullpath, bool return_fullpath,
|
||||
bool recurse)
|
||||
{
|
||||
run_functor_for_paths (result, paths, filter, arg, false, match_fullpath, return_fullpath, recurse);
|
||||
run_functor_for_paths (result, paths, filter, arg, false, pass_fullpath, return_fullpath, recurse);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -270,10 +270,10 @@ find_files_matching_filter (vector<string>& result,
|
|||
const Searchpath& paths,
|
||||
bool (*filter)(const string &, void *),
|
||||
void *arg,
|
||||
bool match_fullpath, bool return_fullpath,
|
||||
bool pass_fullpath, bool return_fullpath,
|
||||
bool recurse)
|
||||
{
|
||||
run_functor_for_paths (result, paths, filter, arg, true, match_fullpath, return_fullpath, recurse);
|
||||
run_functor_for_paths (result, paths, filter, arg, true, pass_fullpath, return_fullpath, recurse);
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue