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@14714 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
luca 2007-01-03 16:32:43 +00:00
parent 076be31dc5
commit f6d9f5a54f
2 changed files with 5 additions and 4 deletions

View File

@ -131,7 +131,8 @@ void TPSV_tabapp::fill_field_list(TMask& m)
TToken_string row(80);
TCodart_livelli cal;
for (int l = 0; l <= cal.last_level(); l++)
int l;
for (l = 0; l <= cal.last_level(); l++)
{
if (l && !cal.enabled(l))
continue;

View File

@ -1480,8 +1480,8 @@ void TStampa_stat::fill_field_list(TMask& m)
TCodart_livelli& cal = *_liv_art;
bool is_articolo = FALSE;
for (int l = 0; l <= cal.last_level(); l++)
int l;
for (l = 0; l <= cal.last_level(); l++)
{
if (l && !cal.enabled(l))
continue;
@ -1983,7 +1983,7 @@ void TStampa_stat::set_printmask()
TMask &mp=selmask();
// visualizza i checkbox per i totali
const nlivelli=mp.sfield(F_CHIAVE).items();
const int nlivelli = mp.sfield(F_CHIAVE).items();
TString80 nomeliv;
printmask().field(F_FLAGSTOTALI).set("X");
TSheet_field& sc = mp.sfield(F_CHIAVE);