INT PAL 53009: 'Remove row' removes 1st row always.

This commit is contained in:
mpa 2015-12-09 10:33:24 +03:00
parent 733276c6f7
commit f573f79fc8

View File

@ -445,7 +445,7 @@ deleteRow()
{
QList<int> selRows = selectedRows();
for ( int r = selRows.count()-1; r >= 0; r-- )
removeRow( r );
removeRow( selRows.at(r) );
}
void