We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 7b3859b commit cb68c98Copy full SHA for cb68c98
python/core/qgsproperty.sip
@@ -80,6 +80,8 @@ class QgsProperty
80
};
81
82
QgsProperty();
83
+ virtual ~QgsProperty();
84
+
85
static QgsProperty fromExpression( const QString& expression, bool isActive = true );
86
static QgsProperty fromField( const QString& fieldName, bool isActive = true );
87
static QgsProperty fromValue( const QVariant& value, bool isActive = true );
src/core/qgsproperty.h
@@ -201,6 +201,8 @@ class CORE_EXPORT QgsProperty
201
*/
202
203
204
+ virtual ~QgsProperty() = default;
205
206
/**
207
* Returns a new ExpressionBasedProperty created from the specified expression.
208
0 commit comments