* correct operator= implementation

This commit is contained in:
Artem Pavlenko 2009-11-08 10:35:36 +00:00
parent 9f51cfdede
commit d2f3e669b0

View file

@ -81,10 +81,12 @@ namespace mapnik
name_=rhs.name_; name_=rhs.name_;
title_=rhs.title_; title_=rhs.title_;
abstract_=rhs.abstract_; abstract_=rhs.abstract_;
srs_ = rhs.srs_;
minZoom_=rhs.minZoom_; minZoom_=rhs.minZoom_;
maxZoom_=rhs.maxZoom_; maxZoom_=rhs.maxZoom_;
active_=rhs.active_; active_=rhs.active_;
queryable_=rhs.queryable_; queryable_=rhs.queryable_;
clear_label_cache_ = rhs.clear_label_cache_;
styles_=rhs.styles_; styles_=rhs.styles_;
ds_=rhs.ds_; ds_=rhs.ds_;
} }