From ea318d1431c89e647598c510c4245c6571aa5f46 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 26 Jan 2012 23:32:43 -0600 Subject: Update to latest tqt3 automated conversion --- qmake/book/qmake-pch.leaf | 6 +++--- qmake/examples/precompile/main.cpp | 6 +++--- qmake/examples/precompile/myobject.cpp | 2 +- qmake/examples/precompile/myobject.h | 2 +- qmake/examples/precompile/stable.h | 6 +++--- qmake/examples/tutorial/hello.h | 2 +- qmake/examples/tutorial/main.cpp | 2 +- qmake/generators/mac/metrowerks_xml.cpp | 6 +++--- qmake/generators/mac/pbuilder_pbx.cpp | 6 +++--- qmake/generators/makefile.cpp | 10 +++++----- qmake/generators/makefile.h | 2 +- qmake/generators/projectgenerator.cpp | 10 +++++----- qmake/generators/unix/unixmake.cpp | 8 ++++---- qmake/generators/unix/unixmake2.cpp | 6 +++--- qmake/generators/win32/borland_bmake.cpp | 4 ++-- qmake/generators/win32/mingw_make.cpp | 4 ++-- qmake/generators/win32/msvc_dsp.cpp | 4 ++-- qmake/generators/win32/msvc_dsp.h | 2 +- qmake/generators/win32/msvc_nmake.cpp | 6 +++--- qmake/generators/win32/msvc_objectmodel.cpp | 6 +++--- qmake/generators/win32/msvc_objectmodel.h | 4 ++-- qmake/generators/win32/msvc_vcproj.cpp | 10 +++++----- qmake/generators/win32/winmakefile.cpp | 12 ++++++------ qmake/main.cpp | 6 +++--- qmake/meta.cpp | 2 +- qmake/meta.h | 6 +++--- qmake/option.cpp | 4 ++-- qmake/option.h | 6 +++--- qmake/project.cpp | 10 +++++----- qmake/project.h | 6 +++--- qmake/property.cpp | 8 ++++---- qmake/property.h | 2 +- qmake/qtmd5.cpp | 2 +- qmake/qtmd5.h | 4 ++-- 34 files changed, 91 insertions(+), 91 deletions(-) (limited to 'qmake') diff --git a/qmake/book/qmake-pch.leaf b/qmake/book/qmake-pch.leaf index 60ea1f4f..b4a41e8a 100644 --- a/qmake/book/qmake-pch.leaf +++ b/qmake/book/qmake-pch.leaf @@ -56,9 +56,9 @@ like this: #include #include #include - #include // Qt includes - #include - #include + #include // Qt includes + #include + #include #include "thirdparty/include/libmain.h" #include "my_stable_class.h" ... diff --git a/qmake/examples/precompile/main.cpp b/qmake/examples/precompile/main.cpp index 259f66ad..80fc704d 100644 --- a/qmake/examples/precompile/main.cpp +++ b/qmake/examples/precompile/main.cpp @@ -1,6 +1,6 @@ -#include -#include -#include +#include +#include +#include #include "myobject.h" #include "mydialog.h" diff --git a/qmake/examples/precompile/myobject.cpp b/qmake/examples/precompile/myobject.cpp index 88c755e7..687116df 100644 --- a/qmake/examples/precompile/myobject.cpp +++ b/qmake/examples/precompile/myobject.cpp @@ -1,5 +1,5 @@ #include -#include +#include #include "myobject.h" MyObject::MyObject() diff --git a/qmake/examples/precompile/myobject.h b/qmake/examples/precompile/myobject.h index 80be4d4f..5819267e 100644 --- a/qmake/examples/precompile/myobject.h +++ b/qmake/examples/precompile/myobject.h @@ -1,4 +1,4 @@ -#include +#include class MyObject : public TQObject { diff --git a/qmake/examples/precompile/stable.h b/qmake/examples/precompile/stable.h index 76ec45ba..62db7215 100644 --- a/qmake/examples/precompile/stable.h +++ b/qmake/examples/precompile/stable.h @@ -4,7 +4,7 @@ /* Add C++ includes here */ # include -# include -# include -# include +# include +# include +# include #endif diff --git a/qmake/examples/tutorial/hello.h b/qmake/examples/tutorial/hello.h index 37d3f05d..650108aa 100644 --- a/qmake/examples/tutorial/hello.h +++ b/qmake/examples/tutorial/hello.h @@ -1,4 +1,4 @@ -#include +#include class MyPushButton : public TQPushButton { diff --git a/qmake/examples/tutorial/main.cpp b/qmake/examples/tutorial/main.cpp index f63c7e27..70015ff4 100644 --- a/qmake/examples/tutorial/main.cpp +++ b/qmake/examples/tutorial/main.cpp @@ -1,4 +1,4 @@ -#include +#include #include "hello.h" int main( int argc, char **argv ) diff --git a/qmake/generators/mac/metrowerks_xml.cpp b/qmake/generators/mac/metrowerks_xml.cpp index 9633ef3d..00260f8e 100644 --- a/qmake/generators/mac/metrowerks_xml.cpp +++ b/qmake/generators/mac/metrowerks_xml.cpp @@ -38,9 +38,9 @@ #include "metrowerks_xml.h" #include "option.h" -#include -#include -#include +#include +#include +#include #include #include #if !defined(TQWS) && defined(Q_OS_MAC) diff --git a/qmake/generators/mac/pbuilder_pbx.cpp b/qmake/generators/mac/pbuilder_pbx.cpp index ebbcb3ce..04c8ab8e 100644 --- a/qmake/generators/mac/pbuilder_pbx.cpp +++ b/qmake/generators/mac/pbuilder_pbx.cpp @@ -39,9 +39,9 @@ #include "pbuilder_pbx.h" #include "option.h" #include "meta.h" -#include -#include -#include +#include +#include +#include #include #include #include "qtmd5.h" diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp index c769e93e..476e9f9b 100644 --- a/qmake/generators/makefile.cpp +++ b/qmake/generators/makefile.cpp @@ -39,11 +39,11 @@ #include "makefile.h" #include "option.h" #include "meta.h" -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #if defined(Q_OS_UNIX) #include #else diff --git a/qmake/generators/makefile.h b/qmake/generators/makefile.h index 7aa76d06..79659507 100644 --- a/qmake/generators/makefile.h +++ b/qmake/generators/makefile.h @@ -40,7 +40,7 @@ #include "option.h" #include "project.h" -#include +#include #ifdef Q_OS_WIN32 #define QT_POPEN _popen diff --git a/qmake/generators/projectgenerator.cpp b/qmake/generators/projectgenerator.cpp index 1e49949b..18b97672 100644 --- a/qmake/generators/projectgenerator.cpp +++ b/qmake/generators/projectgenerator.cpp @@ -38,10 +38,10 @@ #include "projectgenerator.h" #include "option.h" -#include -#include -#include -#include +#include +#include +#include +#include TQString project_builtin_regx() //calculate the builtin regular expression.. { @@ -274,7 +274,7 @@ ProjectGenerator::init() if(!h_ext.isEmpty()) { if((*dep_it).left(1).lower() == "q") { TQString qhdr = (*dep_it).lower(); - if(file_no_path == "qthread.h") + if(file_no_path == "ntqthread.h") addConfig("thread"); } for(TQStringList::Iterator cppit = Option::cpp_ext.begin(); diff --git a/qmake/generators/unix/unixmake.cpp b/qmake/generators/unix/unixmake.cpp index f55132d4..f4049c2c 100644 --- a/qmake/generators/unix/unixmake.cpp +++ b/qmake/generators/unix/unixmake.cpp @@ -38,10 +38,10 @@ #include "unixmake.h" #include "option.h" -#include -#include -#include -#include +#include +#include +#include +#include #include diff --git a/qmake/generators/unix/unixmake2.cpp b/qmake/generators/unix/unixmake2.cpp index a7f7dc6b..edaa8d13 100644 --- a/qmake/generators/unix/unixmake2.cpp +++ b/qmake/generators/unix/unixmake2.cpp @@ -39,9 +39,9 @@ #include "unixmake.h" #include "option.h" #include "meta.h" -#include -#include -#include +#include +#include +#include #include TQString mkdir_p_asstring(const TQString &dir); diff --git a/qmake/generators/win32/borland_bmake.cpp b/qmake/generators/win32/borland_bmake.cpp index 1f942417..b7ca9c1a 100644 --- a/qmake/generators/win32/borland_bmake.cpp +++ b/qmake/generators/win32/borland_bmake.cpp @@ -38,8 +38,8 @@ #include "borland_bmake.h" #include "option.h" -#include -#include +#include +#include #include #include diff --git a/qmake/generators/win32/mingw_make.cpp b/qmake/generators/win32/mingw_make.cpp index d08359ca..06cc0f76 100644 --- a/qmake/generators/win32/mingw_make.cpp +++ b/qmake/generators/win32/mingw_make.cpp @@ -38,8 +38,8 @@ #include "mingw_make.h" #include "option.h" -#include -#include +#include +#include #include #include diff --git a/qmake/generators/win32/msvc_dsp.cpp b/qmake/generators/win32/msvc_dsp.cpp index 2ab133e4..01000737 100644 --- a/qmake/generators/win32/msvc_dsp.cpp +++ b/qmake/generators/win32/msvc_dsp.cpp @@ -38,8 +38,8 @@ #include "msvc_dsp.h" #include "option.h" -#include -#include +#include +#include #include #include diff --git a/qmake/generators/win32/msvc_dsp.h b/qmake/generators/win32/msvc_dsp.h index eedc81a9..8656df69 100644 --- a/qmake/generators/win32/msvc_dsp.h +++ b/qmake/generators/win32/msvc_dsp.h @@ -40,7 +40,7 @@ #define __MSVC_DSP_H__ #include "winmakefile.h" -#include +#include class DspMakefileGenerator : public Win32MakefileGenerator { diff --git a/qmake/generators/win32/msvc_nmake.cpp b/qmake/generators/win32/msvc_nmake.cpp index 49eaf051..2422a8a6 100644 --- a/qmake/generators/win32/msvc_nmake.cpp +++ b/qmake/generators/win32/msvc_nmake.cpp @@ -38,9 +38,9 @@ #include "msvc_nmake.h" #include "option.h" -#include -#include -#include +#include +#include +#include #include #include diff --git a/qmake/generators/win32/msvc_objectmodel.cpp b/qmake/generators/win32/msvc_objectmodel.cpp index e4695962..03653f40 100644 --- a/qmake/generators/win32/msvc_objectmodel.cpp +++ b/qmake/generators/win32/msvc_objectmodel.cpp @@ -38,9 +38,9 @@ #include "msvc_objectmodel.h" #include "msvc_vcproj.h" -#include -#include -#include +#include +#include +#include extern DotNET which_dotnet_version(); diff --git a/qmake/generators/win32/msvc_objectmodel.h b/qmake/generators/win32/msvc_objectmodel.h index a8497168..13b92897 100644 --- a/qmake/generators/win32/msvc_objectmodel.h +++ b/qmake/generators/win32/msvc_objectmodel.h @@ -40,8 +40,8 @@ #define __MSVC_OBJECTMODEL_H__ #include "project.h" -#include -#include +#include +#include enum DotNET { NETUnknown = 0, diff --git a/qmake/generators/win32/msvc_vcproj.cpp b/qmake/generators/win32/msvc_vcproj.cpp index b11b9a93..843d3aad 100644 --- a/qmake/generators/win32/msvc_vcproj.cpp +++ b/qmake/generators/win32/msvc_vcproj.cpp @@ -39,12 +39,12 @@ #include "msvc_vcproj.h" #include "option.h" #include "qtmd5.h" // SG's MD5 addon -#include -#include -#include -#include +#include +#include +#include +#include #include -#include +#include //#define DEBUG_SOLUTION_GEN //#define DEBUG_PROJECT_GEN diff --git a/qmake/generators/win32/winmakefile.cpp b/qmake/generators/win32/winmakefile.cpp index a4fbbde4..872d0fb1 100644 --- a/qmake/generators/win32/winmakefile.cpp +++ b/qmake/generators/win32/winmakefile.cpp @@ -40,12 +40,12 @@ #include "option.h" #include "project.h" #include "meta.h" -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include Win32MakefileGenerator::Win32MakefileGenerator(TQMakeProject *p) : MakefileGenerator(p) diff --git a/qmake/main.cpp b/qmake/main.cpp index 9ff668cb..ac65f5ca 100644 --- a/qmake/main.cpp +++ b/qmake/main.cpp @@ -40,9 +40,9 @@ #include "property.h" #include "option.h" #include "makefile.h" -#include -#include -#include +#include +#include +#include #include #include #include diff --git a/qmake/meta.cpp b/qmake/meta.cpp index 326fcfab..05ffec54 100644 --- a/qmake/meta.cpp +++ b/qmake/meta.cpp @@ -39,7 +39,7 @@ #include "meta.h" #include "project.h" #include "option.h" -#include +#include TQMap > TQMakeMetaInfo::cache_vars; diff --git a/qmake/meta.h b/qmake/meta.h index b2b831d1..535a2d8b 100644 --- a/qmake/meta.h +++ b/qmake/meta.h @@ -39,9 +39,9 @@ #ifndef __META_H__ #define __META_H__ -#include -#include -#include +#include +#include +#include class TQMakeMetaInfo { diff --git a/qmake/option.cpp b/qmake/option.cpp index 123856e6..8865720e 100644 --- a/qmake/option.cpp +++ b/qmake/option.cpp @@ -37,8 +37,8 @@ **********************************************************************/ #include "option.h" -#include -#include +#include +#include #include #include diff --git a/qmake/option.h b/qmake/option.h index 7eee7548..6b02d135 100644 --- a/qmake/option.h +++ b/qmake/option.h @@ -40,9 +40,9 @@ #define __OPTION_H__ #include "project.h" -#include -#include -#include +#include +#include +#include #define QMAKE_VERSION_MAJOR 1 #define QMAKE_VERSION_MINOR 7 diff --git a/qmake/project.cpp b/qmake/project.cpp index 5b883b3c..0a237945 100644 --- a/qmake/project.cpp +++ b/qmake/project.cpp @@ -39,11 +39,11 @@ #include "project.h" #include "property.h" #include "option.h" -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include #ifdef Q_OS_UNIX # include #endif diff --git a/qmake/project.h b/qmake/project.h index c65de1e5..3d7f1777 100644 --- a/qmake/project.h +++ b/qmake/project.h @@ -39,9 +39,9 @@ #ifndef __PROJECT_H__ #define __PROJECT_H__ -#include -#include -#include +#include +#include +#include class TQMakeProperty; diff --git a/qmake/property.cpp b/qmake/property.cpp index 7450688f..846b4512 100644 --- a/qmake/property.cpp +++ b/qmake/property.cpp @@ -38,10 +38,10 @@ #include "property.h" #include "option.h" -#include -#include -#include -#include +#include +#include +#include +#include #include TQStringList qmake_mkspec_paths(); //project.cpp diff --git a/qmake/property.h b/qmake/property.h index 3cc100fd..edad8af2 100644 --- a/qmake/property.h +++ b/qmake/property.h @@ -39,7 +39,7 @@ #ifndef __PROPERTY_H__ #define __PROPERTY_H__ -#include +#include class TQSettings; diff --git a/qmake/qtmd5.cpp b/qmake/qtmd5.cpp index a275f461..6dc12357 100644 --- a/qmake/qtmd5.cpp +++ b/qmake/qtmd5.cpp @@ -1,5 +1,5 @@ /* derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm */ -#include +#include #include "qtmd5.h" typedef unsigned char *POINTER; diff --git a/qmake/qtmd5.h b/qmake/qtmd5.h index 307633a9..10d2b1da 100644 --- a/qmake/qtmd5.h +++ b/qmake/qtmd5.h @@ -1,7 +1,7 @@ #ifndef TQTMD5_H #define TQTMD5_H -#include -#include +#include +#include void qtMD5(const TQByteArray &src, unsigned char *digest); TQString qtMD5(const TQByteArray &src); -- cgit v1.2.3