Move 'poor_mans_glob()' into libpbd
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
*/
|
||||
|
||||
#include "pbd/replace_all.h"
|
||||
#include "glibmm/miscutils.h"
|
||||
|
||||
int
|
||||
replace_all (std::string& str,
|
||||
@@ -36,3 +37,11 @@ replace_all (std::string& str,
|
||||
return cnt;
|
||||
}
|
||||
|
||||
std::string
|
||||
poor_mans_glob (std::string path)
|
||||
{
|
||||
std::string copy = path;
|
||||
replace_all (copy, "~", Glib::get_home_dir());
|
||||
return copy;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user