diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:24:30 -0600 |
commit | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (patch) | |
tree | 3910055c634e2ca44eacd2c892118634df9b3597 /src/moc/moc.l | |
parent | b0b53cc84f215df9b9bcce77253a6b7a9d300986 (diff) | |
download | qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.tar.gz qt3-a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0.zip |
Rename additional global TQt functions
Diffstat (limited to 'src/moc/moc.l')
-rw-r--r-- | src/moc/moc.l | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/moc/moc.l b/src/moc/moc.l index f032fd0..f49af5e 100644 --- a/src/moc/moc.l +++ b/src/moc/moc.l @@ -264,13 +264,13 @@ STRING {ALMOSTSTRING}\" <QT_DEF>[_a-zA-Z][_a-zA-Z0-9]* { X; - yylval.string = qstrdup(yytext); + yylval.string = tqstrdup(yytext); return IDENTIFIER; } <IN_PROPERTY>[_a-zA-Z][_a-zA-Z0-9]* { X; - yylval.string = qstrdup(yytext); + yylval.string = tqstrdup(yytext); return IDENTIFIER; } @@ -280,7 +280,7 @@ STRING {ALMOSTSTRING}\" <IN_CLASSINFO>{ALMOSTSTRING} { X; - yylval.string = qstrdup( yytext + 1 ); + yylval.string = tqstrdup( yytext + 1 ); input(); /* discard the '"' */ return STRING; } @@ -317,7 +317,7 @@ STRING {ALMOSTSTRING}\" <QT_DEF>{ALMOSTSTRING} { X; - yylval.string = qstrdup( yytext + 1 ); + yylval.string = tqstrdup( yytext + 1 ); input(); /* discard the '"' */ return STRING; } |