1
0
mirror of https://github.com/fwbuilder/fwbuilder synced 2026-03-23 03:37:15 +01:00
This commit is contained in:
Vadim Kurland 2009-12-07 19:31:16 +00:00
parent a8e42bf5cd
commit d8598c1ee8
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
#define BUILD_NUM 2043
#define BUILD_NUM 2044

View File

@ -403,7 +403,7 @@ void FirewallInstaller::runJobs()
if (job_list.size()==0)
{
if (fwbdebug) qDebug("FirewallInstaller::runJobs: job list is empty");
QTimer::singleShot( 1000, this, SLOT(mainLoopInstall()));
QTimer::singleShot( 1000, inst_dlg, SLOT(mainLoopInstall()));
return;
}
@ -467,7 +467,7 @@ void FirewallInstaller::executeExternalInstallScript(const QString &command,
inst_dlg->setUpProcessToInstall();
if (!inst_dlg->executeCommand(command.trimmed(), args))
QTimer::singleShot( 0, this, SLOT(mainLoopInstall()));
QTimer::singleShot( 0, inst_dlg, SLOT(mainLoopInstall()));
}
void FirewallInstaller::executeCommand(const QString &cmd)
@ -483,7 +483,7 @@ void FirewallInstaller::executeCommand(const QString &cmd)
inst_dlg->setUpProcessToInstall();
if (!inst_dlg->executeCommand(path, args))
QTimer::singleShot( 0, this, SLOT(mainLoopInstall()));
QTimer::singleShot( 0, inst_dlg, SLOT(mainLoopInstall()));
}
// ************************************************************************