We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d868a63 commit a3abd61Copy full SHA for a3abd61
src/gui/qgsuniquevaluerenderer.cpp
@@ -39,7 +39,8 @@ QgsUniqueValueRenderer::QgsUniqueValueRenderer(const QgsUniqueValueRenderer& oth
39
{
40
mVectorType = other.mVectorType;
41
mClassificationField = other.mClassificationField;
42
- for(std::map<QString, QgsSymbol*>::iterator it=mSymbols.begin(); it!=mSymbols.end(); ++it)
+ std::map<QString, QgsSymbol*> s = other.mSymbols;
43
+ for(std::map<QString, QgsSymbol*>::iterator it=s.begin(); it!=s.end(); ++it)
44
45
QgsSymbol* s = new QgsSymbol(*(it->second));
46
insertValue(it->first, s);
0 commit comments