Hi!
We assign the symbol like this:
{
..
QSharedPointer<Esri::ArcGISRuntime::SimpleFillSymbol> simpleFillSym = convert(m_fillStyle.value(), simpleLineSym);
m_graphic->setSymbol(simpleFillSym.data());
}
So the simpleFillSym is destroyed directly at setSymbol() at "}".
It this safe, because setSymbol create a deep copy?
Thx