Diff for /Amaya/amaya/styleparser.c between versions 1.383 and 1.384

version 1.383, 2007/06/15 15:31:11 version 1.384, 2007/06/20 14:08:33
Line 3925  static char *ParseCSSMaxHeight (Element Line 3925  static char *ParseCSSMaxHeight (Element
     DisplayStyleValue ("max-height", ptr, cssRule);      DisplayStyleValue ("max-height", ptr, cssRule);
   else if (DoApply)    else if (DoApply)
     /* install the new presentation */      /* install the new presentation */
     TtaSetStylePresentation (PRHeight, element, tsch, context, val);      /*TtaSetStylePresentation (PRHeight, element, tsch, context, val)*/;
   return (cssRule);    return (cssRule);
 }  }
   
Line 3965  static char *ParseCSSMinHeight (Element Line 3965  static char *ParseCSSMinHeight (Element
     DisplayStyleValue ("min-height", ptr, cssRule);      DisplayStyleValue ("min-height", ptr, cssRule);
   else if (DoApply)    else if (DoApply)
     /* install the new presentation */      /* install the new presentation */
     TtaSetStylePresentation (PRHeight, element, tsch, context, val);      /*TtaSetStylePresentation (PRHeight, element, tsch, context, val)*/;
   return (cssRule);    return (cssRule);
 }  }
   
Line 4045  static char *ParseCSSMaxWidth (Element e Line 4045  static char *ParseCSSMaxWidth (Element e
     DisplayStyleValue ("max-width", ptr, cssRule);      DisplayStyleValue ("max-width", ptr, cssRule);
   else if (DoApply)    else if (DoApply)
     /* install the new presentation */      /* install the new presentation */
     TtaSetStylePresentation (PRWidth, element, tsch, context, val);      /*TtaSetStylePresentation (PRWidth, element, tsch, context, val)*/;
   return (cssRule);    return (cssRule);
 }  }
   
Line 4085  static char *ParseCSSMinWidth (Element e Line 4085  static char *ParseCSSMinWidth (Element e
     DisplayStyleValue ("min-width", ptr, cssRule);      DisplayStyleValue ("min-width", ptr, cssRule);
   else if (DoApply)    else if (DoApply)
     /* install the new presentation */      /* install the new presentation */
     TtaSetStylePresentation (PRWidth, element, tsch, context, val);      /*TtaSetStylePresentation (PRWidth, element, tsch, context, val)*/;
   return (cssRule);    return (cssRule);
 }  }
   

Removed from v.1.383  
changed lines
  Added in v.1.384


Webmaster