From kde-commits Wed Apr 30 23:23:42 2003 From: Dirk Mueller Date: Wed, 30 Apr 2003 23:23:42 +0000 To: kde-commits Subject: kdelibs/khtml/html X-MARC-Message: https://marc.info/?l=kde-commits&m=105174503332495 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; }