diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /khtml/khtml_iface.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khtml/khtml_iface.h')
-rw-r--r-- | khtml/khtml_iface.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/khtml/khtml_iface.h b/khtml/khtml_iface.h index 9719eb21b..8caade850 100644 --- a/khtml/khtml_iface.h +++ b/khtml/khtml_iface.h @@ -141,14 +141,14 @@ k_dcop: * This can be different from the charset. The widget will try to reload * the current page in the new encoding, if url() is not empty. */ - bool setEncoding( const QString &name ); + bool setEncoding( const TQString &name ); /** * Returns the encoding the page currently uses. * * Note that the encoding might be different from the charset. */ - QString encoding() const; + TQString encoding() const; /** * Sets a user defined style sheet to be used on top of the HTML 4 @@ -157,7 +157,7 @@ k_dcop: * This gives a wide range of possibilities to * change the layout of the page. */ - void setUserStyleSheet(const QString &styleSheet); + void setUserStyleSheet(const TQString &styleSheet); /** * Sets the fixed font style. @@ -165,7 +165,7 @@ k_dcop: * @param name The font name to use for fixed text, e.g. * the <tt><pre></tt> tag. */ - void setFixedFont( const QString &name ); + void setFixedFont( const TQString &name ); /** * Finds the anchor named @p name. @@ -174,7 +174,7 @@ k_dcop: * scrolls to the closest position. Returns @p true if the anchor has * been found. */ - bool gotoAnchor( const QString &name ); + bool gotoAnchor( const TQString &name ); /** * Go to next Anchor. @@ -199,7 +199,7 @@ k_dcop: /** * Returns the text the user has marked. */ - QString selectedText() const; + TQString selectedText() const; /** * Marks all text in the document as selected. @@ -209,7 +209,7 @@ k_dcop: /** * Last-modified date (in raw string format), if received in the [HTTP] headers. */ - QString lastModified() const; + TQString lastModified() const; /** * Print the contents of the current html view. @@ -221,13 +221,13 @@ k_dcop: void debugDOMTree(); void viewDocumentSource(); void viewFrameSource(); - void saveBackground(const QString &url); - void saveDocument(const QString &url); + void saveBackground(const TQString &url); + void saveDocument(const TQString &url); /** * Evaluate a given piece of Javascript code */ - QString evalJS(const QString &script); + TQString evalJS(const TQString &script); /** * Stops display of animated images |