Diff for /Amaya/amaya/MathMLbuilder.c between versions 1.107 and 1.108

version 1.107, 2000/12/28 17:07:28 version 1.108, 2001/01/02 08:19:31
Line 2297  int             *error; Line 2297  int             *error;
           attrType.AttrTypeNum = MathML_ATTR_columnalign;            attrType.AttrTypeNum = MathML_ATTR_columnalign;
           attr = TtaGetAttribute (el, attrType);            attr = TtaGetAttribute (el, attrType);
           if (attr)            if (attr)
              HandleColalignAttribute (attr, el, doc, FALSE);               HandleColalignAttribute (attr, el, doc, FALSE, FALSE);
           break;            break;
        case MathML_EL_MTR:         case MathML_EL_MTR:
           /* if the row has a columnalign attribute, process it */            /* if the row has a columnalign attribute, process it */
Line 2305  int             *error; Line 2305  int             *error;
           attrType.AttrTypeNum = MathML_ATTR_columnalign;            attrType.AttrTypeNum = MathML_ATTR_columnalign;
           attr = TtaGetAttribute (el, attrType);            attr = TtaGetAttribute (el, attrType);
           if (attr)            if (attr)
              HandleColalignAttribute (attr, el, doc, FALSE);               HandleColalignAttribute (attr, el, doc, FALSE, TRUE);
           break;            break;
        case MathML_EL_MLABELEDTR:         case MathML_EL_MLABELEDTR:
           /* if the row has a columnalign attribute, process it */            /* if the row has a columnalign attribute, process it */
Line 2313  int             *error; Line 2313  int             *error;
           attrType.AttrTypeNum = MathML_ATTR_columnalign;            attrType.AttrTypeNum = MathML_ATTR_columnalign;
           attr = TtaGetAttribute (el, attrType);            attr = TtaGetAttribute (el, attrType);
           if (attr)            if (attr)
              HandleColalignAttribute (attr, el, doc, FALSE);               HandleColalignAttribute (attr, el, doc, FALSE, TRUE);
           break;            break;
        case MathML_EL_MTD:         case MathML_EL_MTD:
           /* Create placeholders within the table cell */            /* Create placeholders within the table cell */

Removed from v.1.107  
changed lines
  Added in v.1.108


Webmaster