refactoring

This commit is contained in:
semenov
2024-08-30 14:51:01 +03:00
parent 6a71f421fd
commit f333afe2b4
45 changed files with 592 additions and 410 deletions

View File

@@ -13,7 +13,7 @@ ExternalExecuter::~ExternalExecuter()
}
void ExternalExecuter::CallApp()
void ExternalExecuter::callApp()
{
QProcess *myProcess = new QProcess(this);
QStringList args;
@@ -24,7 +24,7 @@ void ExternalExecuter::CallApp()
QCoreApplication::exit();
}
bool ExternalExecuter::FindApp()
bool ExternalExecuter::findApp()
{
QString localPath = QDir::currentPath() + "/Application";
QDirIterator iterator(localPath,QDirIterator::Subdirectories);