summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/kscons_kmdi/QUICKSTART
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-10-21 14:53:30 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-10-21 14:53:30 -0500
commit3d1c7581ff395fc373ca4b8bd8f65b540b37b12f (patch)
tree7fa67e7ac565be324e5fbc543d33c0ba06e7c1e7 /languages/cpp/app_templates/kscons_kmdi/QUICKSTART
parent2cc195396f4a17c247091cf92b0d42a2acc4124c (diff)
downloadtdevelop-3d1c7581ff395fc373ca4b8bd8f65b540b37b12f.tar.gz
tdevelop-3d1c7581ff395fc373ca4b8bd8f65b540b37b12f.zip
Fix inadvertent tqt changes.
Diffstat (limited to 'languages/cpp/app_templates/kscons_kmdi/QUICKSTART')
-rw-r--r--languages/cpp/app_templates/kscons_kmdi/QUICKSTART10
1 files changed, 5 insertions, 5 deletions
diff --git a/languages/cpp/app_templates/kscons_kmdi/QUICKSTART b/languages/cpp/app_templates/kscons_kmdi/QUICKSTART
index 0ba306bb..53ae8c9e 100644
--- a/languages/cpp/app_templates/kscons_kmdi/QUICKSTART
+++ b/languages/cpp/app_templates/kscons_kmdi/QUICKSTART
@@ -65,16 +65,16 @@ TQMOC PROCESSING
In qt programs, when a header 'foo.h' contains a class that has
Q_SIGNALS and Q_SLOTS, then 'foo.h' must contain the macro Q_OBJECT
-in order to compile. foo_tqmoc.cpp is usually generated, and is
-used to produce foo_tqmoc.o which is linked with the
+in order to compile. foo_moc.cpp is usually generated, and is
+used to produce foo_moc.o which is linked with the
program or the library.
-In kde programs, 'foo.tqmoc' is generated instead of foo_tqmoc.cpp,
+In kde programs, 'foo.moc' is generated instead of foo_moc.cpp,
and it must be included at the very end of foo.cpp
(add #include "foo.moc" : this increases the speed of
compilation a *lot* and makes less object files.
-Both modes are provided though, see test6-tqmocfiesta/
+Both modes are provided though, see test6-mocfiesta/
------------------------------------------
MINIMUM SCONS DISTRIBUTION
@@ -127,7 +127,7 @@ remember that libtool is broken on many systems (invalid flags
among others), so when you can work without libtool
(small projects especially), just do it.
-** tqmoc processing **
+** moc processing **
As stated above, you should always add #include "foo.moc"
for your qt classes (Q_OBJECT) to save precious compilation time.