summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorJohn Emmas <johne53@tiscali.co.uk>2015-03-09 18:29:26 +0000
committerJohn Emmas <johne53@tiscali.co.uk>2015-03-09 18:32:55 +0000
commit523f703b3bf0b05500ef8fc39b4d2aa33a3726c3 (patch)
tree66e6ff868197f2b8b4ee74cc4ea4b7c5207e8738 /libs/pbd
parente525b169f2879456e8f4c507633180ce63b26e28 (diff)
Move 'poor_mans_glob()' into libpbd
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/MSVCpbd/pbd.vcproj4
-rw-r--r--libs/pbd/pbd/replace_all.h1
-rw-r--r--libs/pbd/strreplace.cc9
3 files changed, 14 insertions, 0 deletions
diff --git a/libs/pbd/MSVCpbd/pbd.vcproj b/libs/pbd/MSVCpbd/pbd.vcproj
index 72d525d0b7..e9260495e8 100644
--- a/libs/pbd/MSVCpbd/pbd.vcproj
+++ b/libs/pbd/MSVCpbd/pbd.vcproj
@@ -753,6 +753,10 @@
>
</File>
<File
+ RelativePath="..\pbd\replace_all.h"
+ >
+ </File>
+ <File
RelativePath="..\pbd\resource.h"
>
</File>
diff --git a/libs/pbd/pbd/replace_all.h b/libs/pbd/pbd/replace_all.h
index e7fcc1e0ce..f769bcb3fb 100644
--- a/libs/pbd/pbd/replace_all.h
+++ b/libs/pbd/pbd/replace_all.h
@@ -25,5 +25,6 @@
#include "pbd/libpbd_visibility.h"
LIBPBD_API int replace_all (std::string& str, const std::string& target, const std::string& replacement);
+LIBPBD_API std::string poor_mans_glob (std::string path);
#endif // __pbd_replace_all_h__
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;
+}
+