Fix Mackie control metering (fixes #6608).
[ardour.git] / libs / pbd / strreplace.cc
index 7999b5c6c91c3badcf86269125290ede5be756e1..e043b9f54e9cb5b15a744ea5cd64ee3fef358917 100644 (file)
@@ -17,7 +17,8 @@
 
 */
 
-#include <pbd/replace_all.h>
+#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;
+}
+