Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 167068 | Differences between
and this patch

Collapse All | Expand All

(-)src/tools/moc/moc.cpp.orig (-2 lines)
Lines 620-627 Link Here
620
        fn = filename.mid(i);
620
        fn = filename.mid(i);
621
    fprintf(out, "/****************************************************************************\n"
621
    fprintf(out, "/****************************************************************************\n"
622
            "** Meta object code from reading C++ file '%s'\n**\n" , (const char*)fn);
622
            "** Meta object code from reading C++ file '%s'\n**\n" , (const char*)fn);
623
    fprintf(out, "** Created: %s\n"
624
            "**      by: The Qt Meta Object Compiler version %d (Qt %s)\n**\n" , dstr.data(), mocOutputRevision, QT_VERSION_STR);
625
    fprintf(out, "** WARNING! All changes made in this file will be lost!\n"
623
    fprintf(out, "** WARNING! All changes made in this file will be lost!\n"
626
            "*****************************************************************************/\n\n");
624
            "*****************************************************************************/\n\n");
627
625
(-)src/tools/uic/uic.cpp.orig (-3 lines)
Lines 127-135 Link Here
127
	out << "/********************************************************************************\n";
127
	out << "/********************************************************************************\n";
128
	out << "** Form generated from reading ui file '" << QFileInfo(opt.inputFile).fileName() << "'\n";
128
	out << "** Form generated from reading ui file '" << QFileInfo(opt.inputFile).fileName() << "'\n";
129
	out << "**\n";
129
	out << "**\n";
130
	out << "** Created: " << QDateTime::currentDateTime().toString() << "\n";
131
	out << "**      " << QString("by: Qt User Interface Compiler version %1\n").arg(QT_VERSION_STR);
132
	out << "**\n";
133
	out << "** WARNING! All changes made in this file will be lost when recompiling ui file!\n";
130
	out << "** WARNING! All changes made in this file will be lost when recompiling ui file!\n";
134
	out << "********************************************************************************/\n\n";
131
	out << "********************************************************************************/\n\n";
135
}
132
}
(-)src/tools/rcc/rcc.cpp.orig (-3 lines)
Lines 460-468 Link Here
460
        fprintf(out, "/****************************************************************************\n");
460
        fprintf(out, "/****************************************************************************\n");
461
        fprintf(out, "** Resource object code\n");
461
        fprintf(out, "** Resource object code\n");
462
        fprintf(out, "**\n");
462
        fprintf(out, "**\n");
463
        fprintf(out, "** Created: %s\n", QDateTime::currentDateTime().toString().toLatin1().constData());
464
        fprintf(out, "**      by: The Resource Compiler for Qt version %s\n", QT_VERSION_STR);
465
        fprintf(out, "**\n");
466
        fprintf(out, "** WARNING! All changes made in this file will be lost!\n");
463
        fprintf(out, "** WARNING! All changes made in this file will be lost!\n");
467
        fprintf(out,  "*****************************************************************************/\n\n");
464
        fprintf(out,  "*****************************************************************************/\n\n");
468
        fprintf(out, "#include <QtCore/qglobal.h>\n\n");
465
        fprintf(out, "#include <QtCore/qglobal.h>\n\n");
(-)src/tools/uic3/embed.cpp.orig (-3 lines)
Lines 132-140 Link Here
132
    for ( it = images.begin(); it != images.end(); ++it )
132
    for ( it = images.begin(); it != images.end(); ++it )
133
        out << "**      " << *it << "\n";
133
        out << "**      " << *it << "\n";
134
    out << "**\n";
134
    out << "**\n";
135
    out << "** Created: " << QDateTime::currentDateTime().toString() << "\n";
136
    out << "**      by: The User Interface Compiler for Qt version " << QT_VERSION_STR << "\n";
137
    out << "**\n";
138
    out << "** WARNING! All changes made in this file will be lost!\n";
135
    out << "** WARNING! All changes made in this file will be lost!\n";
139
    out << "****************************************************************************/\n";
136
    out << "****************************************************************************/\n";
140
    out << "\n";
137
    out << "\n";

Return to bug 167068