diff options
author | Slávek Banko <[email protected]> | 2020-03-20 02:45:00 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-03-20 02:45:00 +0100 |
commit | 9d5d503f747ce54a6c048a415dae1b33d6b9b047 (patch) | |
tree | 6951ff957ca517a757d769296d79e6a3ee9bc1aa /tools | |
parent | 277646d8abf9312400a7d4d2bcd4e3790554892c (diff) | |
download | tqt3-9d5d503f747ce54a6c048a415dae1b33d6b9b047.tar.gz tqt3-9d5d503f747ce54a6c048a415dae1b33d6b9b047.zip |
Remove dates from generated files.
This is related to the effort for reproducible builds.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/designer/uic/embed.cpp | 2 | ||||
-rw-r--r-- | tools/designer/uic/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/designer/uic/embed.cpp b/tools/designer/uic/embed.cpp index 937e1cce6..9352a917e 100644 --- a/tools/designer/uic/embed.cpp +++ b/tools/designer/uic/embed.cpp @@ -137,7 +137,7 @@ void Uic::embed( TQTextStream& out, const char* project, const TQStringList& ima for ( it = images.begin(); it != images.end(); ++it ) out << "** " << *it << "\n"; out << "**\n"; - out << "** Created: " << TQDateTime::currentDateTime().toString() << "\n"; + out << "** Created by: The TQt user interface compiler (TQt " << TQT_VERSION_STR << ")\n"; out << "**\n"; out << "** WARNING! All changes made in this file will be lost!\n"; out << "****************************************************************************/\n"; diff --git a/tools/designer/uic/main.cpp b/tools/designer/uic/main.cpp index b0048e5bd..af06821e2 100644 --- a/tools/designer/uic/main.cpp +++ b/tools/designer/uic/main.cpp @@ -320,7 +320,7 @@ int main( int argc, char * argv[] ) out << "/****************************************************************************" << endl; out << "** Form "<< (impl? "implementation" : "interface") << " generated from reading ui file '" << fileName << "'" << endl; out << "**" << endl; - out << "** Created: " << TQDateTime::currentDateTime().toString() << endl; + out << "** Created by: The TQt user interface compiler (TQt " << TQT_VERSION_STR << ")" << endl; out << "**" << endl; out << "** WARNING! All changes made in this file will be lost!" << endl; out << "****************************************************************************/" << endl << endl; |