mirror of
https://github.com/SELinuxProject/setools
synced 2025-02-22 23:26:58 +00:00
DTA/infoflow tabs: revise update completion signal connection
Bring in line with all other tabs.
This commit is contained in:
parent
1ec35b9e2e
commit
f335831de7
@ -72,9 +72,9 @@ class DomainTransitionAnalysisTab(SEToolsWidget, QScrollArea):
|
||||
self.worker = ResultsUpdater(self.query)
|
||||
self.worker.moveToThread(self.thread)
|
||||
self.worker.raw_line.connect(self.raw_results.appendPlainText)
|
||||
self.worker.finished.connect(self.update_complete)
|
||||
self.worker.finished.connect(self.thread.quit)
|
||||
self.thread.started.connect(self.worker.update)
|
||||
self.thread.finished.connect(self.update_complete)
|
||||
|
||||
# create a "busy, please wait" dialog
|
||||
self.busy = QProgressDialog(self)
|
||||
|
@ -72,9 +72,9 @@ class InfoFlowAnalysisTab(SEToolsWidget, QScrollArea):
|
||||
self.worker = ResultsUpdater(self.query)
|
||||
self.worker.moveToThread(self.thread)
|
||||
self.worker.raw_line.connect(self.raw_results.appendPlainText)
|
||||
self.worker.finished.connect(self.update_complete)
|
||||
self.worker.finished.connect(self.thread.quit)
|
||||
self.thread.started.connect(self.worker.update)
|
||||
self.thread.finished.connect(self.update_complete)
|
||||
|
||||
# create a "busy, please wait" dialog
|
||||
self.busy = QProgressDialog(self)
|
||||
|
Loading…
Reference in New Issue
Block a user