Corretta put di un bool per supportare correttamente i virtual field

git-svn-id: svn://10.65.10.50/trunk@4988 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 1997-07-30 17:08:44 +00:00
parent a736a5d785
commit 35200a8042

@ -3113,7 +3113,7 @@ void TRectype::put(const char* fieldname, char val)
void TRectype::put(const char* fieldname, bool val)
{
char s[2] = { val ? 'T' : 'F', '\0'};
char s[2] = { val ? 'X' : ' ', '\0'};
put_str( fieldname, s);
setempty(FALSE);
}