Hi,

So I have a QTableView using my model based on QAbstractTableModel. My model loads items from a file and stores them in a QList. I have a function called addItem(QString code, QString description) that appends a new item at the end of the QList..

rowCount() returns my_items.count();

I also implemented data() so it properly shows the current items in the file.

Now, what do I need to do so the view shows the new item?

Thanks,
Carlos.