diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-12 18:15:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-12 18:15:36 -0600 |
commit | 0a2ae6ad0e85b4e4ac4660804924cdf64e0df798 (patch) | |
tree | 836764bfa1b3d3b1f2d7057133e0f8b5ad292e0e /src | |
parent | e90b15c55dd5cfa5b40e078722c8145264ee7237 (diff) | |
download | qt3-0a2ae6ad0e85b4e4ac4660804924cdf64e0df798.tar.gz qt3-0a2ae6ad0e85b4e4ac4660804924cdf64e0df798.zip |
Fix FTBFS if yacc regenerates the moc
Diffstat (limited to 'src')
-rw-r--r-- | src/moc/moc.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/moc/moc.y b/src/moc/moc.y index a88fcb6..2914150 100644 --- a/src/moc/moc.y +++ b/src/moc/moc.y @@ -2833,7 +2833,7 @@ void generateClass() // generate C++ source code for a class { const char *hdr1 = "/****************************************************************************\n" "** %s meta object code from reading C++ file '%s'\n**\n"; - const char *hdr2 = "** Created: %s\n" + const char *hdr2 = "** Created: %s\n"; const char *hdr3 = "** WARNING! All changes made in this file will be lost!\n"; const char *hdr4 = "*****************************************************************************/\n\n"; int i; |