diff options
Diffstat (limited to 'quanta/parts/kafka/kafkahtmlpart.h')
-rw-r--r-- | quanta/parts/kafka/kafkahtmlpart.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/quanta/parts/kafka/kafkahtmlpart.h b/quanta/parts/kafka/kafkahtmlpart.h index c0c1012f..c8ff05f0 100644 --- a/quanta/parts/kafka/kafkahtmlpart.h +++ b/quanta/parts/kafka/kafkahtmlpart.h @@ -48,7 +48,7 @@ class KafkaWidget : public KHTMLPart Q_OBJECT TQ_OBJECT public: - KafkaWidget(TQWidget *tqparent, TQWidget *widgetParent, KafkaDocument *part, + KafkaWidget(TQWidget *parent, TQWidget *widgetParent, KafkaDocument *part, const char *name = 0); ~KafkaWidget(); @@ -85,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 tqparent Node when going up : + * @param skipParentNodes Specifies if we should skip the parent 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 @@ -115,7 +115,7 @@ public: /** * 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::parentSupports(). - * @param newParent The new tqparent of the DOM::Nodes. + * @param newParent The new parent 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. @@ -151,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 tqparent node of the childs normalized + * @param _node This node is the parent node of the childs normalized */ void normalize(DOM::Node _node); @@ -211,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 tqparent of domNode. + * @param newParent The new parent of domNode. * @param before domNode will be placed before before. * @param modifs The changes made are logged into modifs. */ |