summaryrefslogtreecommitdiffstats
path: root/doc/man
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-06 17:29:49 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-06 17:29:49 +0900
commit587657561bb870d457a188a80bc0ce918ef5a0bd (patch)
treebaed0c3b38c4d11389c96c686967160a1b3027cd /doc/man
parent4161606c301841f973f0319f46e6853c4a3fe906 (diff)
downloadtqt3-587657561bb870d457a188a80bc0ce918ef5a0bd.tar.gz
tqt3-587657561bb870d457a188a80bc0ce918ef5a0bd.zip
Rename moc to tqmoc
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/man')
-rw-r--r--doc/man/man1/tqmoc.12
-rw-r--r--doc/man/man3/tqmetaobject.3qt2
-rw-r--r--doc/man/man3/tqobject.3qt2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/man/man1/tqmoc.1 b/doc/man/man1/tqmoc.1
index 301e95cc..3854c4bf 100644
--- a/doc/man/man1/tqmoc.1
+++ b/doc/man/man1/tqmoc.1
@@ -1,6 +1,6 @@
.TH tqmoc 1 "24 June 2001" "Trolltech AS" \" -*- nroff -*-
.\"
-.\" $Id: qt/moc.1 3.3.8 edited Jan 11 14:38 $
+.\" $Id: qt/tqmoc.1 3.3.8 edited Jan 11 14:38 $
.\"
.\" Copyright (C) 1992-2007 Trolltech ASA. All rights reserved.
.\"
diff --git a/doc/man/man3/tqmetaobject.3qt b/doc/man/man3/tqmetaobject.3qt
index 7a68ee4d..e56365a3 100644
--- a/doc/man/man3/tqmetaobject.3qt
+++ b/doc/man/man3/tqmetaobject.3qt
@@ -80,7 +80,7 @@ property() and propertyNames() to obtain information about a class's properties.
.PP
Classes may have a list of name-value pairs of class information. The number of pairs is returned by numClassInfo(), and values are returned by classInfo().
.PP
-See also moc (Meta Object Compiler) and Object Model.
+See also tqmoc (Meta Object Compiler) and Object Model.
.PP
.SH MEMBER FUNCTION DOCUMENTATION
.SH "const QClassInfo * TQMetaObject::classInfo ( int index, bool super = FALSE ) const"
diff --git a/doc/man/man3/tqobject.3qt b/doc/man/man3/tqobject.3qt
index 7c371e7a..ecf09e22 100644
--- a/doc/man/man3/tqobject.3qt
+++ b/doc/man/man3/tqobject.3qt
@@ -209,7 +209,7 @@ TQObjects can receive events through event() and filter the events of other obje
.PP
Last but not least, TQObject provides the basic timer support in Qt; see TQTimer for high-level support for timers.
.PP
-Notice that the TQ_OBJECT macro is mandatory for any object that implements signals, slots or properties. You also need to run the moc program (Meta Object Compiler) on the source file. We strongly recommend the use of this macro in \fIall\fR subclasses of TQObject regardless of whether or not they actually use signals, slots and properties, since failure to do so may lead certain functions to exhibit undefined behaviour.
+Notice that the TQ_OBJECT macro is mandatory for any object that implements signals, slots or properties. You also need to run the tqmoc program (Meta Object Compiler) on the source file. We strongly recommend the use of this macro in \fIall\fR subclasses of TQObject regardless of whether or not they actually use signals, slots and properties, since failure to do so may lead certain functions to exhibit undefined behaviour.
.PP
All TQt widgets inherit TQObject. The convenience function isWidgetType() returns whether an object is actually a widget. It is much faster than inherits( "TQWidget" ).
.PP