diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:31:42 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:31:42 -0500 |
commit | 9c988982374089f3b1d01ce87ffc230372ebc414 (patch) | |
tree | ab8eb75c7639721ae915d7f3c8003c5983ad5494 /klinkstatus/src/parser/node_impl.h | |
parent | 3c24a111d5294897b164000ad6399ba131dd5c3a (diff) | |
download | tdewebdev-9c988982374089f3b1d01ce87ffc230372ebc414.tar.gz tdewebdev-9c988982374089f3b1d01ce87ffc230372ebc414.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'klinkstatus/src/parser/node_impl.h')
-rw-r--r-- | klinkstatus/src/parser/node_impl.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/klinkstatus/src/parser/node_impl.h b/klinkstatus/src/parser/node_impl.h index 658d66f6..ab94bb43 100644 --- a/klinkstatus/src/parser/node_impl.h +++ b/klinkstatus/src/parser/node_impl.h @@ -214,7 +214,7 @@ inline bool NodeMETA::isLink() const return false; } -inline TQString const& NodeMETA::atributoHTTP_ETQUIV() const +inline TQString const& NodeMETA::atributoHTTP_EQUIV() const { return attribute_http_equiv_; } @@ -237,16 +237,16 @@ inline bool NodeMETA::isRedirection() const inline void NodeMETA::parse() { - parseAttributeHTTP_ETQUIV(); + parseAttributeHTTP_EQUIV(); parseAttributeNAME(); parseAttributeCONTENT(); parseAttributeURL(); } -inline void NodeMETA::parseAttributeHTTP_ETQUIV() +inline void NodeMETA::parseAttributeHTTP_EQUIV() { - attribute_http_equiv_ = getAttribute("HTTP-ETQUIV="); + attribute_http_equiv_ = getAttribute("HTTP-EQUIV="); } inline void NodeMETA::parseAttributeNAME() |