forked from Lainports/freebsd-ports
bundled ones from tarball - Add patches to fix build with newer, external boost libs - Bump PORTREVISION as deps have changed PR: ports/168539 Reported by: David Wolfskill <david@catwhisker.org>
11 lines
468 B
C++
11 lines
468 B
C++
--- src/mgui/project/serialize.cpp.orig 2012-06-05 18:34:29.000000000 +0200
|
|
+++ src/mgui/project/serialize.cpp 2012-06-05 18:35:16.000000000 +0200
|
|
@@ -71,7 +71,7 @@
|
|
return "untitled.bmd";
|
|
|
|
fs::path full_path(db.GetProjectFName());
|
|
- std::string res_str = full_path.leaf();
|
|
+ std::string res_str = full_path.filename().string();
|
|
if( with_path_breakdown )
|
|
res_str += " (" + full_path.branch_path().string() + ")";
|
|
return res_str;
|