freebsd-ports/multimedia/bombono/files/patch-src-mgui-project-mconstructor.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
628 B
C++

--- src/mgui/project/mconstructor.cpp.orig 2012-06-05 22:41:12.000000000 +0200
+++ src/mgui/project/mconstructor.cpp 2012-06-05 22:42:17.000000000 +0200
@@ -961,7 +961,7 @@
static const fs::directory_iterator end_itr;
for( fs::directory_iterator itr(DataDirPath("bmd-icons"));
itr != end_itr; ++itr )
- pix_lst.push_back(Gdk::Pixbuf::create_from_file(itr->string()));
+ pix_lst.push_back(Gdk::Pixbuf::create_from_file(itr->path().string()));
Gtk::Window::set_default_icon_list(pix_lst);
ActionFunctor after_fnr = BuildConstructor(app, prj_file_name);