Patch level :4.0 nopatch

Files correlati     :
Ricompilazione Demo : [ ]
Commento            :corretti errori di compilazione dovuti a compilatore nuovo


git-svn-id: svn://10.65.10.50/trunk@14715 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2007-01-03 16:42:42 +00:00
parent f6d9f5a54f
commit 50a168ffef

View File

@ -180,7 +180,7 @@ const TString& TPack_clifo::get_agente()
clifo.set_var("#CODCF", TVariant(code));
if (clifo.move_first())
{
TToken_string codice(clifo.get((int)0).as_string());
TToken_string codice(clifo.get(0u).as_string());
return get_tmp_string() = codice.get(1);
}
else
@ -525,7 +525,7 @@ bool TPack_indsped::get_clifo(char& tipocf, long& codcf)
if (ok)
{
tipocf = tipo.as_string()[0] == 'C' ? 'C' : 'F';
codcf = clifo.get((int)0).as_int();
codcf = clifo.get(0u).as_int();
}
if (!ok || codcf <= 0)