2021-02-25 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdcatchd(8) that caused it to fail to
	start properly.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-02-25 13:09:52 -05:00
parent 5d948d0848
commit 77f3035ed9
2 changed files with 4 additions and 1 deletions

View File

@ -21214,3 +21214,6 @@
* Removed vestigal signals from 'RDSocket'.
* Fixed a bug in 'RDApplication' that could cause 'openlog(3)'
to receive a corrupt 'ident' value.
2021-02-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatchd(8) that caused it to fail to
start properly.

View File

@ -2684,7 +2684,7 @@ QString MainObject::GetTempRecordingName(int id) const
int main(int argc,char *argv[])
{
QApplication a(argc,argv,false);
QCoreApplication a(argc,argv,false);
new MainObject();
return a.exec();
}