2022-03-25 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdclilogedit(1) that caused startup to fail if
	an X11 display context was not available.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-03-25 13:29:20 -04:00
parent 1c653b8b84
commit 427a964e6b
2 changed files with 4 additions and 1 deletions

View File

@@ -178,7 +178,7 @@ void MainObject::SendNotification(RDNotification::Action action,
int main(int argc,char *argv[])
{
QApplication a(argc,argv,false);
QCoreApplication a(argc,argv);
new MainObject();
return a.exec();
}