summaryrefslogtreecommitdiff
path: root/libs/pbd/strreplace.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/pbd/strreplace.cc')
-rw-r--r--libs/pbd/strreplace.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/libs/pbd/strreplace.cc b/libs/pbd/strreplace.cc
index 5d36608b3b..e043b9f54e 100644
--- a/libs/pbd/strreplace.cc
+++ b/libs/pbd/strreplace.cc
@@ -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;
+}
+