diff options
Diffstat (limited to 'quanta/parts/kafka/kafkahtmlpart.h')
-rw-r--r-- | quanta/parts/kafka/kafkahtmlpart.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/quanta/parts/kafka/kafkahtmlpart.h b/quanta/parts/kafka/kafkahtmlpart.h index f1dc79c1..52a7b031 100644 --- a/quanta/parts/kafka/kafkahtmlpart.h +++ b/quanta/parts/kafka/kafkahtmlpart.h @@ -24,10 +24,10 @@ #include <khtml_events.h> #include <kparts/event.h> -#include <qstringlist.h> -#include <qptrlist.h> -#include <qdockwindow.h> -#include <qevent.h> +#include <tqstringlist.h> +#include <tqptrlist.h> +#include <tqdockwindow.h> +#include <tqevent.h> #include <dom/dom_node.h> #include <dom/dom_element.h> @@ -47,7 +47,7 @@ class KafkaWidget : public KHTMLPart { Q_OBJECT public: - KafkaWidget(QWidget *parent, QWidget *widgetParent, KafkaDocument *part, + KafkaWidget(TQWidget *parent, TQWidget *widgetParent, KafkaDocument *part, const char *name = 0); ~KafkaWidget(); @@ -133,7 +133,7 @@ public slots: * @param text The text to be added * @param position Specifies the position where to add text */ - void insertText(DOM::Node node, const QString &text, int position); + void insertText(DOM::Node node, const TQString &text, int position); /** * Category: HTML Editing Functions @@ -142,7 +142,7 @@ public slots: * @param position Specifies the position where to add text, if it's -1 * the text will be appended after the last position */ - void insertText(const QString &text, int position); + void insertText(const TQString &text, int position); /** * Puts all the child Text DOM::Node into a "normal" form where only @@ -168,7 +168,7 @@ public slots: void slotNewCursorPos(const DOM::Node &domNode, long offset); /** - * Called to set the cursor Position with a QTimer::singleShot() after calling + * Called to set the cursor Position with a TQTimer::singleShot() after calling * document->updateRendering() */ void slotDelayedSetCaretPosition(); @@ -232,7 +232,7 @@ signals: void hasFocus(bool focus); protected: - bool eventFilter(QObject *object, QEvent *event); + bool eventFilter(TQObject *object, TQEvent *event); virtual void khtmlMouseMoveEvent(khtml::MouseMoveEvent *event); virtual void khtmlMousePressEvent(khtml::MousePressEvent *event); @@ -241,7 +241,7 @@ protected: private slots: - void slotContextMenuRequested(const QString& url, const QPoint& point); + void slotContextMenuRequested(const TQString& url, const TQPoint& point); private: #if 0 @@ -309,7 +309,7 @@ private: KafkaDocument *w; friend class KafkaWidgetPrivate; - QPopupMenu* m_contextPopupMenu; + TQPopupMenu* m_contextPopupMenu; }; #endif |