summaryrefslogtreecommitdiff
path: root/libs/pbd/file_utils.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2014-06-24 11:16:38 +1000
committerPaul Davis <paul@linuxaudiosystems.com>2014-06-25 12:40:11 -0400
commit6d0cce528e29fa1a850f616eda0b09b424f760ec (patch)
tree4a82709d379d262eabf5fd598a78502863d0a1c6 /libs/pbd/file_utils.cc
parent851db83fc46ebe41f1b88503895be6e0436d5a6f (diff)
Add/Update docs in pbd/file_utils.h
Diffstat (limited to 'libs/pbd/file_utils.cc')
-rw-r--r--libs/pbd/file_utils.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/pbd/file_utils.cc b/libs/pbd/file_utils.cc
index 632347c41a..8338058707 100644
--- a/libs/pbd/file_utils.cc
+++ b/libs/pbd/file_utils.cc
@@ -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