diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-23 14:04:45 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-27 16:08:54 +0900 |
commit | 04913ce7a46fd027856e83a96205fdc388742a19 (patch) | |
tree | a04a117317c14854a6b91072658ba0eb3ad8b3fc /qmake | |
parent | c11c0f228b65f7471a26513ef8dbde413e75f8fa (diff) | |
download | tqt3-04913ce7a46fd027856e83a96205fdc388742a19.tar.gz tqt3-04913ce7a46fd027856e83a96205fdc388742a19.zip |
Rename ntqobject*.h and qobject*.cpp to tqobject*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'qmake')
-rw-r--r-- | qmake/examples/precompile/myobject.cpp | 2 | ||||
-rw-r--r-- | qmake/examples/precompile/myobject.h | 2 | ||||
-rw-r--r-- | qmake/generators/makefile.cpp | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/qmake/examples/precompile/myobject.cpp b/qmake/examples/precompile/myobject.cpp index 14853508a..da24e625d 100644 --- a/qmake/examples/precompile/myobject.cpp +++ b/qmake/examples/precompile/myobject.cpp @@ -1,5 +1,5 @@ #include <iostream> -#include <ntqobject.h> +#include <tqobject.h> #include "myobject.h" MyObject::MyObject() diff --git a/qmake/examples/precompile/myobject.h b/qmake/examples/precompile/myobject.h index 5819267eb..90c0b865b 100644 --- a/qmake/examples/precompile/myobject.h +++ b/qmake/examples/precompile/myobject.h @@ -1,4 +1,4 @@ -#include <ntqobject.h> +#include <tqobject.h> class MyObject : public TQObject { diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp index f31c7e085..aa3f6c616 100644 --- a/qmake/generators/makefile.cpp +++ b/qmake/generators/makefile.cpp @@ -132,7 +132,7 @@ MakefileGenerator::generateMocList(const TQString &fn_target) total_size_read += have_read); close(file); - bool ignore_qobject = FALSE; + bool ignore_tqobject = FALSE; int line_count = 1; /* qmake ignore TQ_OBJECT */ #define COMP_LEN 9 //strlen("TQ_OBJECT") @@ -154,7 +154,7 @@ MakefileGenerator::generateMocList(const TQString &fn_target) debug_msg(2, "Mocgen: %s:%d Found \"qmake ignore TQ_OBJECT\"", fn_target.latin1(), line_count); x += 20; - ignore_qobject = TRUE; + ignore_tqobject = TRUE; } } } else if(*(big_buffer + x) == '*') { @@ -177,7 +177,7 @@ MakefileGenerator::generateMocList(const TQString &fn_target) if(interesting) { int len = 0; if(!strncmp(big_buffer+x, "TQ_OBJECT", OBJ_LEN)) { - if(ignore_qobject) { + if(ignore_tqobject) { debug_msg(2, "Mocgen: %s:%d Ignoring TQ_OBJECT", fn_target.latin1(), line_count); interesting = FALSE; } |