diff options
Diffstat (limited to 'quanta/parts/kafka/kafkahtmlpart.h')
-rw-r--r-- | quanta/parts/kafka/kafkahtmlpart.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/quanta/parts/kafka/kafkahtmlpart.h b/quanta/parts/kafka/kafkahtmlpart.h index 53a872dc..9365f925 100644 --- a/quanta/parts/kafka/kafkahtmlpart.h +++ b/quanta/parts/kafka/kafkahtmlpart.h @@ -46,8 +46,9 @@ class TQPopupMenu; class KafkaWidget : public KHTMLPart { Q_OBJECT + TQ_OBJECT public: - KafkaWidget(TQWidget *parent, TQWidget *widgetParent, KafkaDocument *part, + KafkaWidget(TQWidget *tqparent, TQWidget *widgetParent, KafkaDocument *part, const char *name = 0); ~KafkaWidget(); @@ -84,7 +85,7 @@ public: * @param goUp A needed boolean for several consecutive call to * this function. Setting it to false by default, or to true if we don't want to go through * the childs of _node. - * @param skipParentNodes Specifies if we should skip the parent Node when going up : + * @param skipParentNodes Specifies if we should skip the tqparent Node when going up : * this implies that Nodes will not be returned two times. * @param dontBlock Specifies if the search should or not be blocked by BlockingTags. * @param _endNode Specifies at which DOM::Node the search should end. It is useful @@ -112,9 +113,9 @@ public: /** --------------- DOM::Node modifications -------------------------- */ /** - * It will move DOM::Nodes from startNode to endNode as children of newParent. It does NOT check - * if the move is valid, so it may crash. Please check before with kafkaCommon::parentSupports(). - * @param newParent The new parent of the DOM::Nodes. + * It will move DOM::Nodes from startNode to endNode as tqchildren of newParent. It does NOT check + * if the move is valid, so it may crash. Please check before with kafkaCommon::tqparentSupports(). + * @param newParent The new tqparent of the DOM::Nodes. * @param startNode The first node to move. * @param endNode Starting from endNode, the last sibling to move. * @param refNode The reference DOM::Node. @@ -150,7 +151,7 @@ public slots: * sections, and entity references) separates Text nodes, i.e., there are * neither adjacent Text nodes nor empty Text nodes. * Should be used instead of DOM::Node::normalize(). - * @param _node This node is the parent node of the childs normalized + * @param _node This node is the tqparent node of the childs normalized */ void normalize(DOM::Node _node); @@ -210,7 +211,7 @@ signals: /** * Is emitted whenever a DOM::Node is about to be moved in the tree. * @param node The DOM::Node which will be moved. - * @param newParent The new parent of domNode. + * @param newParent The new tqparent of domNode. * @param before domNode will be placed before before. * @param modifs The changes made are logged into modifs. */ |