File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
python/gui/auto_generated Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -146,9 +146,11 @@ Moves up currently selected field
146
146
Moves down the currently selected field
147
147
%End
148
148
149
- bool invertSelection( );
149
+ void invertSelection( );
150
150
%Docstring
151
- Invert the field selection state
151
+ Invert the field selection state.
152
+
153
+ .. versionadded:: 3.32
152
154
%End
153
155
154
156
};
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ bool QgsFieldMappingWidget::removeSelectedFields()
148
148
return true ;
149
149
}
150
150
151
- bool QgsFieldMappingWidget::invertSelection ()
151
+ void QgsFieldMappingWidget::invertSelection ()
152
152
{
153
153
for ( int i = 0 ; i < mTableView ->model ()->rowCount (); ++i )
154
154
{
@@ -158,7 +158,6 @@ bool QgsFieldMappingWidget::invertSelection()
158
158
mTableView ->selectionModel ()->select ( index, QItemSelectionModel::Toggle );
159
159
}
160
160
}
161
- return true ;
162
161
}
163
162
164
163
bool QgsFieldMappingWidget::moveSelectedFieldsUp ()
You can’t perform that action at this time.
0 commit comments