Fixed up some more styling.

color_from_string is now Color
filter is now Filter

and maybe a few more ...
This commit is contained in:
Jean-Francois Doyon 2006-02-26 23:04:47 +00:00
parent 34dc842d2d
commit efc23b9217
3 changed files with 3 additions and 3 deletions

View file

@ -53,6 +53,6 @@ void export_color ()
.def(self == self)
.def_pickle(color_pickle_suite())
;
def("color_from_string",&create_from_string);
def("Color",&create_from_string);
}

View file

@ -41,5 +41,5 @@ void export_filter()
class_<filter<Feature>,boost::noncopyable>("Filter","An expression which allows to select features.",no_init)
.def("__str__",&filter<Feature>::to_string);
;
def("filter",&create_filter);
def("Filter",&create_filter);
}

View file

@ -114,5 +114,5 @@ void export_layer()
(&Layer::styles,return_value_policy<reference_existing_object>()))
.def_pickle(layer_pickle_suite())
;
def("create_layer",&create_layer);
def("Layer",&create_layer);
}