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/html/html_objectimpl.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/html/html_objectimpl.h')
-rw-r--r-- | khtml/html/html_objectimpl.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/khtml/html/html_objectimpl.h b/khtml/html/html_objectimpl.h index a33786442..4204e6ef3 100644 --- a/khtml/html/html_objectimpl.h +++ b/khtml/html/html_objectimpl.h @@ -25,8 +25,8 @@ #include "html_elementimpl.h" #include "xml/dom_stringimpl.h" -#include <qobject.h> -#include <qstringlist.h> +#include <tqobject.h> +#include <tqstringlist.h> class KHTMLView; @@ -36,7 +36,7 @@ namespace DOM { class HTMLFormElementImpl; class DOMStringImpl; -class HTMLObjectBaseElementImpl : public QObject, public HTMLElementImpl +class HTMLObjectBaseElementImpl : public TQObject, public HTMLElementImpl { Q_OBJECT public: @@ -49,18 +49,18 @@ public: void renderAlternative(); - void setServiceType(const QString &); + void setServiceType(const TQString &); - QString url; - QString classId; - QString serviceType; + TQString url; + TQString classId; + TQString serviceType; bool needWidgetUpdate; bool m_renderAlternative; virtual void insertedIntoDocument(); virtual void removedFromDocument(); - virtual void addId(const QString& id); - virtual void removeId(const QString& id); + virtual void addId(const TQString& id); + virtual void removeId(const TQString& id); protected slots: void slotRenderAlternative(); protected: @@ -97,7 +97,7 @@ public: virtual void parseAttribute(AttributeImpl *attr); virtual void attach(); - QString pluginPage; + TQString pluginPage; bool hidden; }; @@ -133,12 +133,12 @@ public: virtual void parseAttribute(AttributeImpl *token); - QString name() const { return m_name; } - QString value() const { return m_value; } + TQString name() const { return m_name; } + TQString value() const { return m_value; } protected: - QString m_name; - QString m_value; + TQString m_name; + TQString m_value; }; } // namespace |