diff options
Diffstat (limited to 'khtml/xml/dom_textimpl.h')
-rw-r--r-- | khtml/xml/dom_textimpl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/khtml/xml/dom_textimpl.h b/khtml/xml/dom_textimpl.h index a966a23a4..07e4909f6 100644 --- a/khtml/xml/dom_textimpl.h +++ b/khtml/xml/dom_textimpl.h @@ -51,9 +51,9 @@ public: virtual void appendData ( const DOMString &arg, int &exceptioncode ); virtual void insertData ( const unsigned long offset, const DOMString &arg, int &exceptioncode ); virtual void deleteData ( const unsigned long offset, const unsigned long count, int &exceptioncode ); - virtual void tqreplaceData ( const unsigned long offset, const unsigned long count, const DOMString &arg, int &exceptioncode ); + virtual void replaceData ( const unsigned long offset, const unsigned long count, const DOMString &arg, int &exceptioncode ); - virtual bool tqcontainsOnlyWhitespace() const; + virtual bool containsOnlyWhitespace() const; // DOM methods overridden from parent classes @@ -135,7 +135,7 @@ public: DOMStringImpl *renderString() const; virtual DOMString toString() const; - /** Return the text for the node, with < tqreplaced with < and so on. + /** Return the text for the node, with < replaced with < and so on. * @param startOffset The number of characters counted from the left, zero indexed, counting "<" as one character, to start from. Use -1 to start from 0. * @param endOffset The number of characters counted from the left, zero indexed, counting "<" as one character, to end on. Use -1 to end at the end of the string. * @return An html escaped version of the substring. |