small cleanup

This commit is contained in:
Artem Pavlenko 2006-03-23 21:45:32 +00:00
parent fce4076ad5
commit d35e9f047e
3 changed files with 9 additions and 9 deletions

View file

@ -38,7 +38,7 @@ namespace mapnik
void end_map_processing(Map const& map); void end_map_processing(Map const& map);
void start_layer_processing(Layer const& lay); void start_layer_processing(Layer const& lay);
void end_layer_processing(Layer const& lay); void end_layer_processing(Layer const& lay);
void process(point_symbolizer const& sym,Feature const& feature); void process(point_symbolizer const& sym,Feature const& feature);
void process(line_symbolizer const& sym,Feature const& feature); void process(line_symbolizer const& sym,Feature const& feature);
void process(line_pattern_symbolizer const& sym,Feature const& feature); void process(line_pattern_symbolizer const& sym,Feature const& feature);
void process(polygon_symbolizer const& sym,Feature const& feature); void process(polygon_symbolizer const& sym,Feature const& feature);

View file

@ -248,12 +248,12 @@ namespace mapnik
FT_Face face = face_->get_face(); FT_Face face = face_->get_face();
FT_GlyphSlot slot = face->glyph; FT_GlyphSlot slot = face->glyph;
FT_Bool use_kerning; FT_Bool use_kerning;
FT_UInt previous; FT_UInt previous = 0;
pen.x = 0; pen.x = 0;
pen.y = 0; pen.y = 0;
use_kerning = FT_HAS_KERNING(face)>0?true:false; use_kerning = FT_HAS_KERNING(face)>0?true:false;
FT_BBox bbox; FT_BBox bbox;
bbox.xMin = bbox.yMin = 32000; bbox.xMin = bbox.yMin = 32000;

View file

@ -26,12 +26,12 @@
DATASOURCE_PLUGIN(shape_datasource) DATASOURCE_PLUGIN(shape_datasource)
shape_datasource::shape_datasource(const parameters &params) shape_datasource::shape_datasource(const parameters &params)
: shape_name_(params.get("file")), : shape_name_(params.get("file")),
type_(datasource::Vector), type_(datasource::Vector),
file_length_(0), file_length_(0),
indexed_(false), indexed_(false),
desc_(params.get("name")) desc_(params.get("name"))
{ {
try try
{ {