Remove virtual method from class which shouldn't be subclassed

This commit is contained in:
Nyall Dawson 2017-04-24 11:02:03 +10:00
parent c86264e221
commit 858129ddd3
2 changed files with 0 additions and 4 deletions

View File

@ -80,8 +80,6 @@ class QgsProperty
};
QgsProperty();
virtual ~QgsProperty();
static QgsProperty fromExpression( const QString& expression, bool isActive = true );
static QgsProperty fromField( const QString& fieldName, bool isActive = true );
static QgsProperty fromValue( const QVariant& value, bool isActive = true );

View File

@ -201,8 +201,6 @@ class CORE_EXPORT QgsProperty
*/
QgsProperty();
virtual ~QgsProperty() = default;
/**
* Returns a new ExpressionBasedProperty created from the specified expression.
*/