Skip to content

Commit

Permalink
invert func names
Browse files Browse the repository at this point in the history
  • Loading branch information
roya0045 authored and github-actions[bot] committed Jan 16, 2022
1 parent ec00557 commit ef7b42d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/layout/qgslayoutattributeselectiondialog.cpp
Expand Up @@ -709,7 +709,7 @@ void QgsLayoutAttributeSelectionDialog::showHelp()
QgsHelp::openHelp( QStringLiteral( "print_composer/composer_items/composer_attribute_table.html" ) );
}

void QgsLayoutAttributeSelectionDialog::mSortColumnUpPushButton_clicked()
void QgsLayoutAttributeSelectionDialog::mSortColumnDownPushButton_clicked()
{
//move selected row down
const QModelIndexList indexes = mSortColumnTableView->selectionModel()->selectedRows();
Expand All @@ -719,7 +719,7 @@ void QgsLayoutAttributeSelectionDialog::mSortColumnUpPushButton_clicked()
mSortColumnModel->moveRow( indexes.at( i - 1 ).row(), QgsLayoutTableSortModel::ShiftDown );
}

void QgsLayoutAttributeSelectionDialog::mSortColumnDownPushButton_clicked()
void QgsLayoutAttributeSelectionDialog::mSortColumnUpPushButton_clicked()
{
//move selected row up
const QModelIndexList indexes = mSortColumnTableView->selectionModel()->selectedRows();
Expand Down

0 comments on commit ef7b42d

Please sign in to comment.