+ fix copy ctor in symbolizer_with_image

This commit is contained in:
Artem Pavlenko 2010-06-15 13:36:41 +00:00
parent b27357848d
commit e572b83d3a
2 changed files with 2 additions and 2 deletions

View file

@ -48,8 +48,8 @@ protected:
symbolizer_with_image(path_expression_ptr filename);
symbolizer_with_image(symbolizer_with_image const& rhs);
path_expression_ptr image_filename_;
transform_type matrix_;
float opacity_;
transform_type matrix_;
};
}

View file

@ -40,9 +40,9 @@ symbolizer_with_image::symbolizer_with_image(path_expression_ptr file)
symbolizer_with_image::symbolizer_with_image( symbolizer_with_image const& rhs)
: image_filename_(rhs.image_filename_),
opacity_(rhs.opacity_),
matrix_(rhs.matrix_) {}
path_expression_ptr symbolizer_with_image::get_filename() const
{
return image_filename_;