removeRow(int row)
if(model->removeRow(row) == false){ QMessageBox::critical(this, "Ошибка", model->lastError().text()); }
itemSelectionChanged()
int row = m_pListButtons->currentItem()->row();m_pListButtons->selectRow(row);
C++ (Qt)m_pListButtons->currentItem()
int row = m_pListButtons->currentItem()->row();
C++ (Qt)QTableWidgetItem *item = m_pListButtons->currentItem();if( !item ) return; int row = item->row();m_pListButtons->selectRow(row);
C++ (Qt)int row = m_pListButtons->currentRow();if( row != -1 ) m_pListButtons->selectRow(row);