forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
15 lines
596 B
C++
15 lines
596 B
C++
--- bindings/python/mapnik_text_placement.cpp.orig 2013-09-14 06:44:28.000000000 +0400
|
|
+++ bindings/python/mapnik_text_placement.cpp 2013-09-14 06:46:57.000000000 +0400
|
|
@@ -194,7 +194,11 @@
|
|
ListNodeWrap(object l) : formatting::list_node(), wrapper<formatting::list_node>()
|
|
{
|
|
stl_input_iterator<formatting::node_ptr> begin(l), end;
|
|
- children_.insert(children_.end(), begin, end);
|
|
+ while (begin != end)
|
|
+ {
|
|
+ children_.push_back(*begin);
|
|
+ ++begin;
|
|
+ }
|
|
}
|
|
|
|
/* TODO: Add constructor taking variable number of arguments.
|