summaryrefslogtreecommitdiffstats
path: root/tdehtml/ecma
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-30 13:50:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-30 13:50:27 -0600
commit21bc7541114fb026606284e45dc10e3320f39f1d (patch)
tree1c2006752ae09dda7ed8a635d7a4dfa8eacea0cb /tdehtml/ecma
parent120efd17d0cec4846e7151633a451d54fa714241 (diff)
downloadtdelibs-21bc7541114fb026606284e45dc10e3320f39f1d.tar.gz
tdelibs-21bc7541114fb026606284e45dc10e3320f39f1d.zip
Fix a few remaining references to kio_
Diffstat (limited to 'tdehtml/ecma')
-rw-r--r--tdehtml/ecma/xmlhttprequest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdehtml/ecma/xmlhttprequest.cpp b/tdehtml/ecma/xmlhttprequest.cpp
index d95fe5e58..38c0b3ed1 100644
--- a/tdehtml/ecma/xmlhttprequest.cpp
+++ b/tdehtml/ecma/xmlhttprequest.cpp
@@ -393,7 +393,7 @@ void XMLHttpRequest::send(const TQString& _body)
// Set the default referrer if one is not already supplied
// through setRequestHeader. NOTE: the user can still disable
- // this feature at the protocol level (kio_http).
+ // this feature at the protocol level (tdeio_http).
// ### does find() ever succeed? the headers are stored in lower case!
if (requestHeaders.find("Referer") == requestHeaders.end()) {
KURL documentURL(doc->URL());
@@ -476,7 +476,7 @@ void XMLHttpRequest::setRequestHeader(const TQString& _name, const TQString &val
// Sanitize the request headers below and handle them as if they are
// calls to open. Otherwise, we will end up ignoring them all together!
- // TODO: Do something about "put" which kio_http sort of supports and
+ // TODO: Do something about "put" which tdeio_http sort of supports and
// the webDAV headers such as PROPFIND etc...
if (name == "get" || name == "post") {
KURL reqURL (doc->URL(), value.stripWhiteSpace());