Diff for /Amaya/amaya/MathMLbuilder.c between versions 1.194 and 1.195

version 1.194, 2004/01/19 13:53:05 version 1.195, 2004/04/07 11:10:19
Line 4619  void MathMLAttributeComplete (Attribute Line 4619  void MathMLAttributeComplete (Attribute
                depAttrType.AttrSSchema = attrType.AttrSSchema ;                 depAttrType.AttrSSchema = attrType.AttrSSchema ;
                depAttrType.AttrTypeNum = MathML_ATTR_mathcolor;                 depAttrType.AttrTypeNum = MathML_ATTR_mathcolor;
                if (!TtaGetAttribute (el, depAttrType))                 if (!TtaGetAttribute (el, depAttrType))
                   HTMLSetForegroundColor (doc, el, value);                    HTMLSetForegroundColor (doc, el, 0, value);
                break;                 break;
              case MathML_ATTR_mathcolor:               case MathML_ATTR_mathcolor:
                HTMLSetForegroundColor (doc, el, value);                 HTMLSetForegroundColor (doc, el, 0, value);
                break;                 break;
              case MathML_ATTR_background_:               case MathML_ATTR_background_:
                /* deprecated attribute */                 /* deprecated attribute */
Line 4631  void MathMLAttributeComplete (Attribute Line 4631  void MathMLAttributeComplete (Attribute
                depAttrType.AttrSSchema = attrType.AttrSSchema;                 depAttrType.AttrSSchema = attrType.AttrSSchema;
                depAttrType.AttrTypeNum = MathML_ATTR_mathbackground;                 depAttrType.AttrTypeNum = MathML_ATTR_mathbackground;
                if (!TtaGetAttribute (el, depAttrType))                 if (!TtaGetAttribute (el, depAttrType))
                   HTMLSetBackgroundColor (doc, el, value);                    HTMLSetBackgroundColor (doc, el, 0, value);
                break;                 break;
              case MathML_ATTR_mathbackground:               case MathML_ATTR_mathbackground:
                HTMLSetBackgroundColor (doc, el, value);                 HTMLSetBackgroundColor (doc, el, 0, value);
                break;                 break;
              case MathML_ATTR_fontfamily:               case MathML_ATTR_fontfamily:
                SetFontfamily (doc, el, value);                 SetFontfamily (doc, el, value);

Removed from v.1.194  
changed lines
  Added in v.1.195


Webmaster