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

version 1.107, 2004/03/29 08:21:52 version 1.108, 2004/04/07 11:10:19
Line 1662  void EndOfHTMLAttributeValue (char *attr Line 1662  void EndOfHTMLAttributeValue (char *attr
               if (strlen (attrValue) > MaxMsgLength - 30)                if (strlen (attrValue) > MaxMsgLength - 30)
                 attrValue[MaxMsgLength - 30] = EOS;                  attrValue[MaxMsgLength - 30] = EOS;
               HTMLSetBackgroundImage (context->doc, context->lastElement,                HTMLSetBackgroundImage (context->doc, context->lastElement,
                                       REPEAT, attrValue, FALSE);                                        REPEAT, 0, attrValue, FALSE);
             }              }
           else if (!strcmp (lastMappedAttr->XMLattribute, "bgcolor"))            else if (!strcmp (lastMappedAttr->XMLattribute, "bgcolor"))
             HTMLSetBackgroundColor (context->doc, context->lastElement,              HTMLSetBackgroundColor (context->doc, context->lastElement,
                                     attrValue);                                      0, attrValue);
           else if (!strcmp (lastMappedAttr->XMLattribute, "text") ||            else if (!strcmp (lastMappedAttr->XMLattribute, "text") ||
                    !strcmp (lastMappedAttr->XMLattribute, "color"))                     !strcmp (lastMappedAttr->XMLattribute, "color"))
             HTMLSetForegroundColor (context->doc,              HTMLSetForegroundColor (context->doc, context->lastElement,
                                     context->lastElement, attrValue);                                      0, attrValue);
         }          }
     }      }
 }  }

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


Webmaster