Patch level : 10.0 196

Files correlati     : tutti
Ricompilazione Demo : [ ]
Commento            :
0001043: Messaggi window che richiedono risposta (si/no anzichè Yes/No)
Se la gestione è in italiano e le domande vengono fatte in italiano ... è possibile poter scegliere tra risposte in italiano?


git-svn-id: svn://10.65.10.50/trunk@17931 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
guy 2008-12-17 11:52:05 +00:00
parent 465350fba2
commit 686792f384

@ -1379,7 +1379,15 @@ bool TSheet::export_handler(TMask_field& f, KEY k)
if (ct == 'P' || ct == 'V')
{
tab.get(c, str);
xvt_str_number_format(str.get_buffer(), str.size());
if (str.full())
{
if (real::is_natural(str))
str.trim();
else
xvt_str_number_format(str.get_buffer(), str.size());
}
else
str.cut(0);
tab.add(str, c);
}
}