+ fix copy ctor in symbolizer_with_image
This commit is contained in:
parent
b27357848d
commit
e572b83d3a
2 changed files with 2 additions and 2 deletions
|
@ -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_;
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -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_;
|
||||
|
|
Loading…
Reference in a new issue