2021-08-17 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdlogmanager(1) that caused it to attempt to
	open an X11 connection even when invoked in CLI mode.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-08-17 11:24:44 -04:00
parent b7e264ef04
commit 13f2d5c0ca
2 changed files with 4 additions and 1 deletions

View File

@ -22301,3 +22301,6 @@
2021-08-17 Fred Gleason <fredg@paravelsystems.com>
* Added disambiguation info regarding apostrophes vs. backticks
to the 'SQL STATEMENTS' section of 'CODINGSTYLE'.
2021-08-17 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdlogmanager(1) that caused it to attempt to
open an X11 connection even when invoked in CLI mode.

View File

@ -371,7 +371,7 @@ int main(int argc,char *argv[])
}
if(cmd_generate||cmd_merge_traffic||cmd_merge_music) {
QApplication a(argc,argv,false);
QCoreApplication a(argc,argv);
new LogObject(cmd_service,cmd_start_offset,cmd_protect_existing,
cmd_generate,cmd_merge_music,cmd_merge_traffic);
return a.exec();