diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-02 21:37:22 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-07-06 11:24:55 +0900 |
commit | 7552c6d73043b1040139033f6864db48ae5446cf (patch) | |
tree | f90d24d072dd3ee6a3f909bf7778abc7669f03ef /tools/designer/uic/form.cpp | |
parent | c113da2069b66130f67a0f27c699e1cec83588a5 (diff) | |
download | tqt-7552c6d7.tar.gz tqt-7552c6d7.zip |
Rename main window nt* related files to equivalent tq*. The file
"ntqsession.h" was totally unnecessary and has been removed.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tools/designer/uic/form.cpp')
-rw-r--r-- | tools/designer/uic/form.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/designer/uic/form.cpp b/tools/designer/uic/form.cpp index 003aa33ff..5a24be097 100644 --- a/tools/designer/uic/form.cpp +++ b/tools/designer/uic/form.cpp @@ -827,13 +827,13 @@ void Uic::createFormImpl( const TQDomElement &e ) } out << "#include <ntqlayout.h>" << endl; - out << "#include <ntqtooltip.h>" << endl; + out << "#include <tqtooltip.h>" << endl; out << "#include <ntqwhatsthis.h>" << endl; if ( objClass == "TQMainWindow" ) { - out << "#include <ntqaction.h>" << endl; - out << "#include <ntqmenubar.h>" << endl; - out << "#include <ntqpopupmenu.h>" << endl; - out << "#include <ntqtoolbar.h>" << endl; + out << "#include <tqaction.h>" << endl; + out << "#include <tqmenubar.h>" << endl; + out << "#include <tqpopupmenu.h>" << endl; + out << "#include <tqtoolbar.h>" << endl; } // find out what images are required |