We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65cd9fc commit 4a4877dCopy full SHA for 4a4877d
src/core/qgsdatadefined.cpp
@@ -210,7 +210,10 @@ bool QgsDataDefined::expressionIsPrepared() const
210
211
QgsExpression *QgsDataDefined::expression()
212
{
213
- d.detach();
+ //Ideally there should be a detach here, but that causes issues
214
+ //as detaching can create a new expression which will be unprepared
215
+ //TODO - revisit after QgsExpression is made implicitly shared
216
+ //d.detach();
217
return d->expression;
218
}
219
0 commit comments