From 504f38b45e2c92aec1f8153dd6b7691ccd723ce7 Mon Sep 17 00:00:00 2001 From: Oleksandr Kolodkin Date: Sat, 28 Mar 2026 20:24:14 +0200 Subject: [PATCH] Fix organization name and improve debug output --- gui/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gui/main.cpp b/gui/main.cpp index 0255fec..3509e43 100644 --- a/gui/main.cpp +++ b/gui/main.cpp @@ -22,6 +22,7 @@ #include #include #include +#include #ifndef NDEBUG #include @@ -32,7 +33,7 @@ int main(int argc, char *argv[]) { QApplication a(argc, argv); a.setApplicationName("Arduino PPM Generator"); - a.setOrganizationName("Alexandr Kolodkin"); + a.setOrganizationName("Oleksandr Kolodkin"); a.setApplicationVersion("1.1.0"); a.setStyle(QStyleFactory::create("Fusion")); @@ -72,10 +73,10 @@ int main(int argc, char *argv[]) QLatin1String("_"), ApplicationTranslationPath )) { - qDebug() << "Application translator installed from " << ApplicationTranslationPath << "."; a.installTranslator(&myTranslator); + qDebug() << "Application translator installed from " << ApplicationTranslationPath << "."; break; - } { + } else { qDebug() << "Application translator not found in " << ApplicationTranslationPath << "."; } }