freebsd-ports/multimedia/bombono/files/patch-src-mgui-editor-toolbar.cpp
Pawel Pekala f120b7547b - Force build with external boost libs otherwise port uses old,
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>
2012-06-06 18:48:37 +00:00

11 lines
449 B
C++

--- src/mgui/editor/toolbar.cpp.orig 2012-06-05 17:43:12.000000000 +0200
+++ src/mgui/editor/toolbar.cpp 2012-06-05 17:43:33.000000000 +0200
@@ -287,7 +287,7 @@
if( fs::is_directory(dir) )
{
boost_foreach( const fs::path& pth, dir_range(dir) )
- o_lst.push_back(pth.filename());
+ o_lst.push_back(pth.filename().string());
}
}
std::sort(o_lst.begin(), o_lst.end(), &ByExtName);