Rename PBD::find_file_in_search_path to just PBD::find_file

saves a bit of typing and not necessary if you look at how it is used.

Conflicts:
	gtk2_ardour/about.cc
	gtk2_ardour/session_dialog.cc
	libs/pbd/system_exec.cc
This commit is contained in:
Tim Mayberry 2014-06-19 21:23:12 +10:00 committed by Paul Davis
parent 093fb77b88
commit dbcc1f1d39
30 changed files with 58 additions and 59 deletions

View file

@ -147,9 +147,9 @@ find_files_matching_pattern (vector<string>& result,
}
bool
find_file_in_search_path(const Searchpath& search_path,
const string& filename,
std::string& result)
find_file (const Searchpath& search_path,
const string& filename,
std::string& result)
{
vector<std::string> tmp;