diff options
Diffstat (limited to 'kexi/formeditor/container.h')
-rw-r--r-- | kexi/formeditor/container.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kexi/formeditor/container.h b/kexi/formeditor/container.h index f2ae1f14..36f35e82 100644 --- a/kexi/formeditor/container.h +++ b/kexi/formeditor/container.h @@ -51,7 +51,7 @@ class KFORMEDITOR_EXPORT EventEater : public TQObject public: /*! Constructs eater object. All events for \a widget and it's subwidgets - will be redirected to \a container. \a container will be also tqparent of eater object, + will be redirected to \a container. \a container will be also parent of eater object, so you don't need to care about deleting it. */ EventEater(TQWidget *widget, TQObject *container); ~EventEater(); @@ -80,8 +80,8 @@ class KFORMEDITOR_EXPORT Container : public TQObject /** * Creates a Container from the widget \a container, which have - \a toplevel as tqparent Container. */ - Container(Container *toplevel, TQWidget *container, TQObject *tqparent=0, const char *name=0); + \a toplevel as parent Container. */ + Container(Container *toplevel, TQWidget *container, TQObject *parent=0, const char *name=0); virtual ~Container(); //! \return a pointer to the toplevel Container, or 0 if this Container is toplevel @@ -147,7 +147,7 @@ class KFORMEDITOR_EXPORT Container : public TQObject (and so of the Form). If \a add is true, the formerly selected widget is still selected, and the new one is just added. If false, \a selected replace the actually selected widget. If \a dontRaise is true, then - the widget \a selected (and its tqparent) won't be raised (eg when you + the widget \a selected (and its parent) won't be raised (eg when you select widget in ObjectTreeView). \sa Form::setSelectedWidget() */ void setSelectedWidget(TQWidget *selected, bool add, bool dontRaise=false, |