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

(-)tools/designer/uic/main.cpp.orig (-1 / +1 lines)
Lines 313-319 Link Here
313
	out << "/****************************************************************************" << endl;
313
	out << "/****************************************************************************" << endl;
314
	out << "** Form "<< (impl? "implementation" : "interface") << " generated from reading ui file '" << fileName << "'" << endl;
314
	out << "** Form "<< (impl? "implementation" : "interface") << " generated from reading ui file '" << fileName << "'" << endl;
315
	out << "**" << endl;
315
	out << "**" << endl;
316
	out << "** Created: " << QDateTime::currentDateTime().toString() << endl;
316
	out << "** Created" << endl;
317
	out << "**      by: The User Interface Compiler ($Id: qt/main.cpp   3.3.8   edited Jan 11 14:47 $)" << endl;
317
	out << "**      by: The User Interface Compiler ($Id: qt/main.cpp   3.3.8   edited Jan 11 14:47 $)" << endl;
318
	out << "**" << endl;
318
	out << "**" << endl;
319
	out << "** WARNING! All changes made in this file will be lost!" << endl;
319
	out << "** WARNING! All changes made in this file will be lost!" << endl;
(-)tools/designer/uic/embed.cpp.orig (-1 / +1 lines)
Lines 130-136 Link Here
130
    for ( it = images.begin(); it != images.end(); ++it )
130
    for ( it = images.begin(); it != images.end(); ++it )
131
	out << "**      " << *it << "\n";
131
	out << "**      " << *it << "\n";
132
    out << "**\n";
132
    out << "**\n";
133
    out << "** Created: " << QDateTime::currentDateTime().toString() << "\n";
133
    out << "** Created" << "\n";
134
    out << "**      by: The User Interface Compiler ($Id: qt/embed.cpp   3.3.8   edited Jan 11 14:47 $)\n";
134
    out << "**      by: The User Interface Compiler ($Id: qt/embed.cpp   3.3.8   edited Jan 11 14:47 $)\n";
135
    out << "**\n";
135
    out << "**\n";
136
    out << "** WARNING! All changes made in this file will be lost!\n";
136
    out << "** WARNING! All changes made in this file will be lost!\n";
(-)src/moc/moc_yacc.cpp.orig (-2 / +2 lines)
Lines 2872-2878 Link Here
2872
{
2872
{
2873
    const char *hdr1 = "/****************************************************************************\n"
2873
    const char *hdr1 = "/****************************************************************************\n"
2874
		 "** %s meta object code from reading C++ file '%s'\n**\n";
2874
		 "** %s meta object code from reading C++ file '%s'\n**\n";
2875
    const char *hdr2 = "** Created: %s\n"
2875
    const char *hdr2 = "** Created\n"
2876
		 "**      by: The Qt MOC ($Id: qt/moc_yacc.cpp   3.3.8   edited Feb 2 14:59 $)\n**\n";
2876
		 "**      by: The Qt MOC ($Id: qt/moc_yacc.cpp   3.3.8   edited Feb 2 14:59 $)\n**\n";
2877
    const char *hdr3 = "** WARNING! All changes made in this file will be lost!\n";
2877
    const char *hdr3 = "** WARNING! All changes made in this file will be lost!\n";
2878
    const char *hdr4 = "*****************************************************************************/\n\n";
2878
    const char *hdr4 = "*****************************************************************************/\n\n";
Lines 2912-2918 Link Here
2912
	if ( i >= 0 )
2912
	if ( i >= 0 )
2913
	    fn = &g->fileName[i];
2913
	    fn = &g->fileName[i];
2914
	fprintf( out, hdr1, (const char*)qualifiedClassName(),(const char*)fn);
2914
	fprintf( out, hdr1, (const char*)qualifiedClassName(),(const char*)fn);
2915
	fprintf( out, hdr2, (const char*)dstr );
2915
	fprintf( out, hdr2 );
2916
	fprintf( out, hdr3 );
2916
	fprintf( out, hdr3 );
2917
	fprintf( out, hdr4 );
2917
	fprintf( out, hdr4 );
2918
2918

Return to bug 167068