Rename PBD::get_files_in_directory to just PBD::get_files, change parameter order and fix docs

This commit is contained in:
Tim Mayberry 2014-06-22 17:39:06 +10:00 committed by Paul Davis
parent b668c53c5c
commit 849adaf7e5
2 changed files with 5 additions and 6 deletions

View file

@ -177,7 +177,7 @@ get_paths (vector<string>& result,
}
void
get_files_in_directory (const std::string& directory_path, vector<string>& result)
get_files (vector<string>& result, const std::string& directory_path)
{
return get_paths (result, directory_path, true, false);
}