Hey, I am sorry to bother you, but I tried to give everyone a parent, and I think they do?
(from my src code)
@def init(self, parent=None , **kwargs):
QWidget.init(self, parent, **kwargs)
layout = QVBoxLayout(self)
self.lv = snifferView.view()
layout.addWidget(self.lv)
self.setLayout(layout)
headers = ['No','Source','Destination','Protocol']
self.model = snifferModel.tableModel(headers=headers)
self.lv.tableView.setModel(self.model)
self.resultList = []
self.hexDump = ''
self.count = 0
self.lv.tableView.selectionModel().selectionChanged.connect(self.rowSelected)
@