summaryrefslogtreecommitdiffstats
path: root/kig/kig/kig_commands.h
diff options
context:
space:
mode:
Diffstat (limited to 'kig/kig/kig_commands.h')
-rw-r--r--kig/kig/kig_commands.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/kig/kig/kig_commands.h b/kig/kig/kig_commands.h
index 0dd7c93a..e9df77c1 100644
--- a/kig/kig/kig_commands.h
+++ b/kig/kig/kig_commands.h
@@ -44,6 +44,7 @@ class KigCommand
: public TQObject, public KNamedCommand
{
Q_OBJECT
+ TQ_OBJECT
class Private;
Private* d;
public:
@@ -58,7 +59,7 @@ public:
static KigCommand* addCommand( KigPart& doc, ObjectHolder* os );
/**
* make sure that when you delete something, you are also deleting
- * its parents. This class assumes you've done that.
+ * its tqparents. This class assumes you've done that.
* \ref KigDocument::delObjects() takes care of this for you.
*/
static KigCommand* removeCommand( KigPart& doc, const std::vector<ObjectHolder*>& os );
@@ -123,7 +124,7 @@ protected:
* this class monitors a set of DataObjects for changes and returns an
* appropriate ChangeObjectImpsCommand if necessary..
* E.g. MovingMode wants to move certain objects, so it monitors all
- * the parents of the explicitly moving objects:
+ * the tqparents of the explicitly moving objects:
* \code
* MonitorDataObjects mon( getAllParents( emo ) );
* \endcode
@@ -180,7 +181,7 @@ class ChangeParentsAndTypeTask
class Private;
Private* d;
public:
- ChangeParentsAndTypeTask( ObjectTypeCalcer* o, const std::vector<ObjectCalcer*>& newparents,
+ ChangeParentsAndTypeTask( ObjectTypeCalcer* o, const std::vector<ObjectCalcer*>& newtqparents,
const ObjectType* newtype );
~ChangeParentsAndTypeTask();