From 635af671002c3e4c82b5afdb2b9edd28d8e5ace8 Mon Sep 17 00:00:00 2001 From: plc-user <74435298+plc-user@users.noreply.github.com> Date: Thu, 23 Jan 2025 20:20:17 +0100 Subject: [PATCH] "writableLocation" is a QString --- sources/machine_info.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/machine_info.cpp b/sources/machine_info.cpp index 93b0f6761..0911fcc04 100644 --- a/sources/machine_info.cpp +++ b/sources/machine_info.cpp @@ -157,7 +157,7 @@ void MachineInfo::send_info_to_debug() qInfo()<< " Company Elements Dir:"<< QString(QETApp::companyElementsDir().toLatin1()); qInfo()<< " Company TitleBlock Templates Dir:"<< QString(QETApp::companyTitleBlockTemplatesDir().toLatin1()); - qInfo()<< " Standard Location :"<< QStringList(QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation)); + qInfo()<< " Standard Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation); qInfo()<< " App Data Location:"<< QStandardPaths::writableLocation(QStandardPaths::AppDataLocation); qInfo()<< " App Local DataLocation:"<< QStandardPaths::writableLocation(QStandardPaths::ApplicationsLocation); qInfo()<< " Home Location:"<< QStandardPaths::writableLocation(QStandardPaths::HomeLocation);