CVS commit by mueller: whoopsie M +1 -1 htmlparser.cpp 1.326 M +2 -2 htmltokenizer.cpp 1.265 --- kdelibs/khtml/html/htmlparser.cpp #1.325:1.326 @@ -269,5 +269,5 @@ void KHTMLParser::parseToken(Token *t) // we couldn't insert the node... #ifdef PARSER_DEBUG - kdDebug( 6035 ) << "insertNode failed current=" << current->tid() << ", new=" << n->id() << "!" << endl; + kdDebug( 6035 ) << "insertNode failed current=" << current->id() << ", new=" << n->id() << "!" << endl; #endif if (map == n) --- kdelibs/khtml/html/htmltokenizer.cpp #1.264:1.265 @@ -879,5 +879,5 @@ void HTMLTokenizer::parseTag(DOMStringIt } } - cBuffer[cBufferPos++] = toupper(curchar); + cBuffer[cBufferPos++] = tolower(curchar); ++src; }