From 99d04bbf087d7fa7cf0208dc252f8063bd773809 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Thu, 9 Aug 2007 20:23:09 +0000 Subject: [PATCH] removed set_alpha --- bindings/python/mapnik_image.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bindings/python/mapnik_image.cpp b/bindings/python/mapnik_image.cpp index 02e2d5ba9..51e25002d 100644 --- a/bindings/python/mapnik_image.cpp +++ b/bindings/python/mapnik_image.cpp @@ -54,9 +54,8 @@ void export_image() .add_property("background",make_function (&Image32::getBackground,return_value_policy()), &Image32::setBackground, "The background color of the image.") - .def("set_alpha",&Image32::set_alpha) .def("blend",&blend) ; - def("rawdata",&rawdata); // FIXME : I dont think we need this one + def("rawdata",&rawdata); // FIXME : I dont think we need this one anymore def("save_to_file", save_to_file2); }