From 24929861bae1b50f7ffc12e37339cd715d69bd51 Mon Sep 17 00:00:00 2001 From: Laurent Trinques Date: Sun, 29 Sep 2024 13:11:40 +0200 Subject: [PATCH] Improve --- sources/dxf/dxftoelmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/dxf/dxftoelmt.cpp b/sources/dxf/dxftoelmt.cpp index 0cfd0f100..37bec6f91 100644 --- a/sources/dxf/dxftoelmt.cpp +++ b/sources/dxf/dxftoelmt.cpp @@ -49,7 +49,7 @@ QByteArray dxfToElmt(const QString &file_path) if (process_.waitForFinished()) { qInfo()<<"\n Start converting DXF file..........\n"<< file_path; - qInfo()<< process_.readAllStandardError(); //Print standard error to log file + qInfo()<< process_.readAllStandardError().data(); //Print standard error to log file const auto byte_array{process_.readAll()}; process_.close();