Corretti MI6030 MI6033

git-svn-id: svn://10.65.10.50/trunk@3219 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 1996-07-19 15:26:59 +00:00
parent f04e47ada7
commit 59d35b10fb
2 changed files with 5 additions and 0 deletions

View File

@ -187,6 +187,10 @@ public:
bool uppercase() const
{ return _flags.uppercase; }
// @cmember Ritorna TRUE se il campo e' zerofilled
bool zerofilled() const
{ return _flags.zerofilled; }
// @cmember Verifica la allowance of the pipe
bool pipe_allowed() const
{ return _flags.pipeallowed; }

View File

@ -1153,6 +1153,7 @@ TBrowse_sheet::TBrowse_sheet(TCursor* cursor, const char* fields,
if (c.roman()) flags << 'M';
if (c.right_justified()) flags << 'R';
if (c.uppercase()) flags << 'U';
if (c.zerofilled()) flags << 'Z';
switch (c.class_id())
{