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 3737094 commit 53e1abaCopy full SHA for 53e1aba
src/app/qgsfeatureaction.cpp
@@ -223,6 +223,7 @@ bool QgsFeatureAction::addFeature( const QgsAttributeMap& defaultAttributes )
223
void QgsFeatureAction::onFeatureSaved( const QgsFeature& feature )
224
{
225
QgsAttributeForm* form = qobject_cast<QgsAttributeForm*>( sender() );
226
+ Q_UNUSED( form ) // only used for Q_ASSERT
227
Q_ASSERT( form );
228
229
mFeatureSaved = true;
src/gui/qgsattributeform.cpp
@@ -245,6 +245,7 @@ void QgsAttributeForm::onAttributeChanged( const QVariant& value )
245
246
void QgsAttributeForm::onAttributeAdded( int idx )
247
248
+ Q_UNUSED( idx ) // only used for Q_ASSERT
249
if ( mFeature.isValid() )
250
251
QgsAttributes attrs = mFeature.attributes();
0 commit comments