From 85f8978e740a5a6d9c3e1aefa2bf3dd1dfe5f584 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Mon, 16 Nov 2020 13:05:06 +0100 Subject: [PATCH] downloader: this is a QCoreApplication This prevents it from trying to open a display. Signed-off-by: Robert C. Helling --- subsurface-downloader-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsurface-downloader-main.cpp b/subsurface-downloader-main.cpp index 6582cf9dc..5cd0b1444 100644 --- a/subsurface-downloader-main.cpp +++ b/subsurface-downloader-main.cpp @@ -33,7 +33,7 @@ int main(int argc, char **argv) int i; bool no_filenames = true; - std::unique_ptr app(new QApplication(argc, argv)); + std::unique_ptr app(new QCoreApplication(argc, argv)); QStringList files; QStringList importedFiles; QStringList arguments = QCoreApplication::arguments();