mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-22 03:07:20 +01:00
fixing build on windows
This commit is contained in:
parent
69896936ba
commit
9ed6889906
@ -378,7 +378,7 @@ QString CompilerDriver_iosacl::run(const std::string &cluster_id,
|
||||
}
|
||||
catch (FWException &ex)
|
||||
{
|
||||
status = ERROR;
|
||||
status = BaseCompiler::ERROR;
|
||||
return QString::fromUtf8(ex.toString().c_str());
|
||||
}
|
||||
|
||||
|
||||
@ -535,7 +535,7 @@ QString CompilerDriver_pix::run(const std::string &cluster_id,
|
||||
}
|
||||
catch (FWException &ex)
|
||||
{
|
||||
status = ERROR;
|
||||
status = BaseCompiler::ERROR;
|
||||
return QString::fromUtf8(ex.toString().c_str());
|
||||
}
|
||||
|
||||
|
||||
@ -366,7 +366,7 @@ QString CompilerDriver_procurve_acl::run(const std::string &cluster_id,
|
||||
}
|
||||
catch (FWException &ex)
|
||||
{
|
||||
status = ERROR;
|
||||
status = BaseCompiler::ERROR;
|
||||
return QString::fromUtf8(ex.toString().c_str());
|
||||
}
|
||||
|
||||
|
||||
@ -746,7 +746,7 @@ QString CompilerDriver_ipt::run(const std::string &cluster_id,
|
||||
}
|
||||
catch (FWException &ex)
|
||||
{
|
||||
status = ERROR;
|
||||
status = BaseCompiler::ERROR;
|
||||
return QString::fromUtf8(ex.toString().c_str());
|
||||
}
|
||||
|
||||
|
||||
@ -416,7 +416,7 @@ QString CompilerDriver_ipf::run(const std::string &cluster_id,
|
||||
}
|
||||
catch (FWException &ex)
|
||||
{
|
||||
status = ERROR;
|
||||
status = BaseCompiler::ERROR;
|
||||
return QString::fromUtf8(ex.toString().c_str());
|
||||
}
|
||||
|
||||
|
||||
@ -338,7 +338,7 @@ QString CompilerDriver_ipfw::run(const std::string &cluster_id,
|
||||
}
|
||||
catch (FWException &ex)
|
||||
{
|
||||
status = ERROR;
|
||||
status = BaseCompiler::ERROR;
|
||||
return QString::fromUtf8(ex.toString().c_str());
|
||||
}
|
||||
|
||||
|
||||
@ -758,7 +758,7 @@ QString CompilerDriver_pf::run(const std::string &cluster_id,
|
||||
}
|
||||
catch (FWException &ex)
|
||||
{
|
||||
status = ERROR;
|
||||
status = BaseCompiler::ERROR;
|
||||
return QString::fromUtf8(ex.toString().c_str());
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user