Correct Event Loop Connections

This commit is contained in:
2019-11-20 21:42:12 -08:00
parent e928234c14
commit 997b3c5db0
6 changed files with 18 additions and 11 deletions

View File

@@ -2,10 +2,10 @@
FaultFinder::FaultFinder(QObject *parent) : QObject(parent)
{
fault_mgr = new FaultManager(parent);
image_mgr = new ImageManager(parent);
config_mgr = new ConfigManager(parent);
stream_mgr = new StreamManager(parent);
fault_mgr = new FaultManager(this);
image_mgr = new ImageManager(this);
config_mgr = new ConfigManager(this);
stream_mgr = new StreamManager(this);
}
FaultFinder::~FaultFinder()