Diff for /Amaya/amaya/XHTMLbuilder.c between versions 1.150 and 1.151

version 1.150, 2008/03/26 10:34:05 version 1.151, 2008/03/28 11:52:16
Line 1075  void XhtmlElementComplete (ParserData *c Line 1075  void XhtmlElementComplete (ParserData *c
       CheckTable (el, doc);        CheckTable (el, doc);
       SubWithinTable ();        SubWithinTable ();
       break;        break;
   
       case HTML_EL_COL:
       case HTML_EL_COLGROUP:
         /* create a C_Empty child */
         if (!TtaGetFirstChild (el))
           {
             elType.ElTypeNum = HTML_EL_C_Empty;
             child = TtaNewElement (doc, elType);
             if (child)
               TtaInsertFirstChild (&child, el, doc);
           }
         break;
                 
     case HTML_EL_TITLE:      case HTML_EL_TITLE:
       /* show the TITLE in the main window */        /* show the TITLE in the main window */

Removed from v.1.150  
changed lines
  Added in v.1.151


Webmaster