summaryrefslogtreecommitdiffstats
path: root/klinkstatus/src/parser/htmlparser.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-13 01:31:42 -0500
committerSlávek Banko <slavek.banko@axis.cz>2012-06-19 19:43:00 +0200
commit25b9a0f723f946fedcefbddedca3d56b9a970123 (patch)
tree5afeacad9591b2d417a42058835e4b509574e3dc /klinkstatus/src/parser/htmlparser.cpp
parent6b7d3fc79f17f5e0cf9f711c6293981ff1a45026 (diff)
downloadtdewebdev-25b9a0f723f946fedcefbddedca3d56b9a970123.tar.gz
tdewebdev-25b9a0f723f946fedcefbddedca3d56b9a970123.zip
Fix inadvertent "TQ" changes.
(cherry picked from commit 9c988982374089f3b1d01ce87ffc230372ebc414)
Diffstat (limited to 'klinkstatus/src/parser/htmlparser.cpp')
-rw-r--r--klinkstatus/src/parser/htmlparser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/klinkstatus/src/parser/htmlparser.cpp b/klinkstatus/src/parser/htmlparser.cpp
index 759553e1..25f09b09 100644
--- a/klinkstatus/src/parser/htmlparser.cpp
+++ b/klinkstatus/src/parser/htmlparser.cpp
@@ -202,7 +202,7 @@ void HtmlParser::parseNodesOfTypeMETA()
NodeMETA* node = new NodeMETA(aux[i]);
nodes_.push_back(node);
- if(!is_content_type_set_ && node->atributoHTTP_ETQUIV().lower() == TQString("Content-Type").lower()) {
+ if(!is_content_type_set_ && node->atributoHTTP_EQUIV().lower() == TQString("Content-Type").lower()) {
is_content_type_set_ = true;
node_META_content_type_.setNode(aux[i]);
}
@@ -218,7 +218,7 @@ TQString HtmlParser::findCharsetInMetaElement(TQString const& html)
{
NodeMETA node(metaTags[i]);
- if(node.atributoHTTP_ETQUIV().lower() == TQString("Content-Type").lower()) {
+ if(node.atributoHTTP_EQUIV().lower() == TQString("Content-Type").lower()) {
return node.charset();
}
}
@@ -383,7 +383,7 @@ void HtmlParser::mostra() const
#endif
kdDebug(23100) << nm->url() << endl
- << nm->atributoHTTP_ETQUIV() << endl
+ << nm->atributoHTTP_EQUIV() << endl
<< nm->atributoNAME() << endl
<< nm->atributoCONTENT() << endl;
}