1
0
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:
Vadim Kurland 2011-02-08 14:51:22 -08:00
parent 69896936ba
commit 9ed6889906
7 changed files with 7 additions and 7 deletions

View File

@ -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());
}

View File

@ -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());
}

View File

@ -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());
}

View File

@ -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());
}

View File

@ -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());
}

View File

@ -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());
}

View File

@ -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());
}