diff options
author | Michele Calgaro <[email protected]> | 2024-10-06 17:29:49 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-06 17:29:49 +0900 |
commit | 587657561bb870d457a188a80bc0ce918ef5a0bd (patch) | |
tree | baed0c3b38c4d11389c96c686967160a1b3027cd /doc/metaobjects.doc | |
parent | 4161606c301841f973f0319f46e6853c4a3fe906 (diff) | |
download | tqt3-587657561bb870d457a188a80bc0ce918ef5a0bd.tar.gz tqt3-587657561bb870d457a188a80bc0ce918ef5a0bd.zip |
Rename moc to tqmoc
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'doc/metaobjects.doc')
-rw-r--r-- | doc/metaobjects.doc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/metaobjects.doc b/doc/metaobjects.doc index 0e9cb162e..3ee82c19f 100644 --- a/doc/metaobjects.doc +++ b/doc/metaobjects.doc @@ -1,6 +1,6 @@ /**************************************************************************** ** -** Explanation of moc and the meta object system +** Explanation of tqmoc and the meta object system ** ** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. ** @@ -53,10 +53,10 @@ The Meta Object System is based on three things: \i the \l TQObject class; \i the TQ_OBJECT macro inside the private section of the class declaration; -\i the \link moc.html Meta Object Compiler (moc)\endlink. +\i the \link tqmoc.html Meta Object Compiler (tqmoc)\endlink. \endlist -The \e moc reads a C++ source file. If it finds one or more class +\e TQMoc reads a C++ source file. If it finds one or more class declarations that contain the TQ_OBJECT macro, it produces another C++ source file which contains the meta object code for the classes that contain the TQ_OBJECT macro. This generated source file is either |