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

* Fixed a regression in rdimport(1) that caused it to fail to
	start in dropbox mode.

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

View File

@ -21217,3 +21217,6 @@
2021-02-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatchd(8) that caused it to fail to
start properly.
2021-02-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdimport(1) that caused it to fail to
start in dropbox mode.

View File

@ -2323,7 +2323,7 @@ void MainObject::ErrorExit(RDApplication::ExitCode code) const
int main(int argc,char *argv[])
{
QApplication a(argc,argv,false);
QCoreApplication a(argc,argv,false);
new MainObject();
return a.exec();
}