Skip to content

Commit d285134

Browse files
committedJun 2, 2016
Show field names in attribute table sorting expression builder
1 parent 1df5664 commit d285134

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed
 

‎src/gui/qgsattributeform.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,6 @@ QgsAttributeForm::QgsAttributeForm( QgsVectorLayer* vl, const QgsFeature &featur
7070
initPython();
7171
setFeature( feature );
7272

73-
// Using attributeAdded() attributeDeleted() are not emitted on all fields changes (e.g. layer fields changed,
74-
// joined fields changed) -> use updatedFields() instead
75-
#if 0
76-
connect( vl, SIGNAL( attributeAdded( int ) ), this, SLOT( onAttributeAdded( int ) ) );
77-
connect( vl, SIGNAL( attributeDeleted( int ) ), this, SLOT( onAttributeDeleted( int ) ) );
78-
#endif
7973
connect( vl, SIGNAL( updatedFields() ), this, SLOT( onUpdatedFields() ) );
8074
connect( vl, SIGNAL( beforeAddingExpressionField( QString ) ), this, SLOT( preventFeatureRefresh() ) );
8175
connect( vl, SIGNAL( beforeRemovingExpressionField( int ) ), this, SLOT( preventFeatureRefresh() ) );

0 commit comments

Comments
 (0)
Please sign in to comment.