| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/graphics/epsonscan2/files/ |
Upload File : |
--- src/Standalone/deviceconnectiondialog.cpp.orig 2022-02-17 18:43:44 UTC
+++ src/Standalone/deviceconnectiondialog.cpp
@@ -110,11 +110,10 @@ void DetectAlertGlassDirty(SDIScannerDriver* driver, S
#endif
QString arg2(TranslationString::GetString().translation_str.A_UI_006);
QString arg3(TranslationString::GetString().translation_str.VERSION_003);
- QString executable = exeapp + " " + arg1 + " " + "\"" + arg2 + "\"" + " " + arg3 + " " + "A_UI_006" + " " + std::to_string( 1).c_str();
dir_name = dir_name + "A_UI_006";
if(!tmpdir.exists(dir_name.c_str())){
if(!tmpdir.exists(dir_name.c_str())) tmpdir.mkdir(dir_name.c_str());
- if(!QProcess::startDetached(executable)){
+ if(!QProcess::startDetached(exeapp, {arg1, arg2, arg3, "A_UI_006", std::to_string( 1).c_str()})){
qCritical() << "Cannot start program";
}
}
@@ -129,11 +128,10 @@ void DetectAlertGlassDirty(SDIScannerDriver* driver, S
#endif
QString arg2(TranslationString::GetString().translation_str.A_UNIT_008);
QString arg3(TranslationString::GetString().translation_str.VERSION_003);
- QString executable = exeapp + " " + arg1 + " " + "\"" + arg2 + "\"" + " " + arg3 + " " + "A_UNIT_008" + " " + std::to_string( 2).c_str();
dir_name = dir_name + "A_UNIT_008";
if(!tmpdir.exists(dir_name.c_str())){
if(!tmpdir.exists(dir_name.c_str())) tmpdir.mkdir(dir_name.c_str());
- if(!QProcess::startDetached(executable)){
+ if(!QProcess::startDetached(exeapp, {arg1, arg2, arg3, "A_UNIT_008", std::to_string( 2).c_str()})){
qCritical() << "Cannot start program";
}
}