C:/Qt/PPSE/Source/./dexEdit.cpp:401: error: 'QTableWidgetItem::setFlags' : cannot convert parameter 1 from 'bool' to 'Qt::ItemFlags'
lines 401, 450, 451, 461, 462, 493, and 522 have that error.
The first line of code in question is:
m_ui->tblSC->item( num,2 )->setFlags( !Qt::ItemIsEnabled );
I personally don't see the problem since !Qt::ItemIsEnabled should technically return a 1 or 0, both of which are valid flags for setFlags. Does the return of them have to be casted?
Any ideas?