diff options
author | Slávek Banko <[email protected]> | 2020-03-20 02:45:00 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-02-02 00:33:54 +0100 |
commit | fd708f1b0265f63ebb6f06c6201061183675d890 (patch) | |
tree | 471cdc4f4c52a2ee884461bb35c63c6ae0695759 /tools/designer/uic | |
parent | 7e66c403623bdb20b01ff05ebc5e2dfc30f15b3e (diff) | |
download | qt3-fd708f1b0265f63ebb6f06c6201061183675d890.tar.gz qt3-fd708f1b0265f63ebb6f06c6201061183675d890.zip |
Remove dates from generated files.
This is related to the effort for reproducible builds.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit fc8564a5f04b90b998e792444f70550272e78ddb)
Diffstat (limited to 'tools/designer/uic')
-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 b0ca530..444183f 100644 --- a/tools/designer/uic/embed.cpp +++ b/tools/designer/uic/embed.cpp @@ -137,7 +137,7 @@ void Uic::embed( QTextStream& out, const char* project, const QStringList& image for ( it = images.begin(); it != images.end(); ++it ) out << "** " << *it << "\n"; out << "**\n"; - out << "** Created: " << QDateTime::currentDateTime().toString() << "\n"; + out << "** Created by: The Qt user interface compiler (Qt " << QT_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 ace2033..60bc9dd 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: " << QDateTime::currentDateTime().toString() << endl; + out << "** Created by: The Qt user interface compiler (Qt " << QT_VERSION_STR << ")" << endl; out << "**" << endl; out << "** WARNING! All changes made in this file will be lost!" << endl; out << "****************************************************************************/" << endl << endl; |