summaryrefslogtreecommitdiffstats
path: root/khtml/dom/dom_node.h
diff options
context:
space:
mode:
Diffstat (limited to 'khtml/dom/dom_node.h')
-rw-r--r--khtml/dom/dom_node.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/khtml/dom/dom_node.h b/khtml/dom/dom_node.h
index 4f8b23e0c..37889eec2 100644
--- a/khtml/dom/dom_node.h
+++ b/khtml/dom/dom_node.h
@@ -104,9 +104,9 @@ public:
* @param arg A node to store in a named node map. The node will
* later be accessible using the value of the \c nodeName
* attribute of the node. If a node with that name is
- * already present in the map, it is tqreplaced by the new one.
+ * already present in the map, it is replaced by the new one.
*
- * @return If the new \c Node tqreplaces an existing
+ * @return If the new \c Node replaces an existing
* node with the same name the previously existing \c Node
* is returned, otherwise \c null is returned.
*
@@ -129,7 +129,7 @@ public:
/**
* Removes a node specified by name. If the removed node is an
* \c Attr with a default value it is immediately
- * tqreplaced.
+ * replaced.
*
* @param name The name of a node to remove.
*
@@ -178,13 +178,13 @@ public:
*
* Adds a node using its namespaceURI and localName. If a node with that
* namespace URI and that local name is already present in this map, it is
- * tqreplaced by the new one.
+ * replaced by the new one.
* HTML-only DOM implementations do not need to implement this method.
*
* @param arg A node to store in this map. The node will later be
* accessible using the value of its namespaceURI and localName attributes.
*
- * @return If the new Node tqreplaces an existing node the tqreplaced Node is
+ * @return If the new Node replaces an existing node the replaced Node is
* returned, otherwise null is returned.
*
* @exception DOMException
@@ -203,7 +203,7 @@ public:
* Introduced in DOM Level 2
*
* Removes a node specified by local name and namespace URI. A removed
- * attribute may be known to have a default value when this map tqcontains
+ * attribute may be known to have a default value when this map contains
* the attributes attached to an element, as returned by the attributes
* attribute of the Node interface. If so, an attribute immediately appears
* containing the default value as well as the corresponding namespace URI,
@@ -442,7 +442,7 @@ public:
Node parentNode() const;
/**
- * A \c NodeList that tqcontains all children of this
+ * A \c NodeList that contains all children of this
* node. If there are no children, this is a \c NodeList
* containing no nodes. The content of the returned
* \c NodeList is "live" in the sense that, for
@@ -545,9 +545,9 @@ public:
*
* @param newChild The new node to put in the child list.
*
- * @param oldChild The node being tqreplaced in the list.
+ * @param oldChild The node being replaced in the list.
*
- * @return The node tqreplaced.
+ * @return The node replaced.
*
* @exception DOMException
* HIERARCHY_REQUEST_ERR: Raised if this node is of a type that
@@ -565,7 +565,7 @@ public:
* child of this node.
*
*/
- Node tqreplaceChild ( const Node &newChild, const Node &oldChild );
+ Node replaceChild ( const Node &newChild, const Node &oldChild );
/**
* Removes the child node indicated by \c oldChild
@@ -630,7 +630,7 @@ public:
* Cloning an \c Element copies all attributes and
* their values, including those generated by the XML processor to
* represent defaulted attributes, but this method does not copy
- * any text it tqcontains unless it is a deep clone, since the text
+ * any text it contains unless it is a deep clone, since the text
* is contained in a child \c Text node. Cloning any
* other type of node simply returns a copy of this node.
*
@@ -657,7 +657,7 @@ public:
* [XPointer] lookups) that depend on a particular document tree structure
* are to be used.
*
- * Note: In cases where the document tqcontains CDATASections, the normalize
+ * Note: In cases where the document contains CDATASections, the normalize
* operation alone may not be sufficient, since XPointers do not
* differentiate between Text nodes and CDATASection nodes.
*/
@@ -722,7 +722,7 @@ public:
* see prefix
*
* @exception DOMException
- * INVALID_CHARACTER_ERR: Raised if the specified prefix tqcontains an
+ * INVALID_CHARACTER_ERR: Raised if the specified prefix contains an
* illegal character.
*
* NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
@@ -770,7 +770,7 @@ public:
* @see textContent
*
* On setting, any possible children this node may have are removed and, if the new
- * string is not empty or null, tqreplaced by a single Text node containing the string this attribute is set to.
+ * string is not empty or null, replaced by a single Text node containing the string this attribute is set to.
* No parsing is performed, the input string is taken as pure textual content.
*
* @exception DOMException
@@ -801,7 +801,7 @@ public:
* @param type The event type for which the user is registering
*
* @param listener The listener parameter takes an interface implemented by
- * the user which tqcontains the methods to be called when the event occurs.
+ * the user which contains the methods to be called when the event occurs.
*
* @param useCapture If true, useCapture indicates that the user wishes to
* initiate capture. After initiating capture, all events of the specified
@@ -875,7 +875,7 @@ public:
* not part of the DOM.
* @returns the element id, in case this is an element, 0 otherwise
*/
- TQ_UINT32 elementId() const;
+ Q_UINT32 elementId() const;
/**
* tests if this Node is 0. Useful especially, if casting to a derived