Doing something like this should work:
tableWidget->insertRow( tableWidget->rowCount() );
This will append a row to the end of your table. You can use the insertRow() function to insert new rows into the middle of your table as well.
Doing something like this should work:
tableWidget->insertRow( tableWidget->rowCount() );
This will append a row to the end of your table. You can use the insertRow() function to insert new rows into the middle of your table as well.