hello,
i'm using QTableView as container and using it in another object(another thread). At the beginning i need to check if QTableView, QAbstractItemModel or QStandardItemModel is empty, how can I achieve this?
You can check the row count of the model. Be aware that you can't modify directly QWidgets in any other thread than the main thread. You can however use e.g. signals and slots for that