diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /src/moc/moc.l | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
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 f49af5e..f032fd0 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 = tqstrdup(yytext); + yylval.string = qstrdup(yytext); return IDENTIFIER; } <IN_PROPERTY>[_a-zA-Z][_a-zA-Z0-9]* { X; - yylval.string = tqstrdup(yytext); + yylval.string = qstrdup(yytext); return IDENTIFIER; } @@ -280,7 +280,7 @@ STRING {ALMOSTSTRING}\" <IN_CLASSINFO>{ALMOSTSTRING} { X; - yylval.string = tqstrdup( yytext + 1 ); + yylval.string = qstrdup( yytext + 1 ); input(); /* discard the '"' */ return STRING; } @@ -317,7 +317,7 @@ STRING {ALMOSTSTRING}\" <QT_DEF>{ALMOSTSTRING} { X; - yylval.string = tqstrdup( yytext + 1 ); + yylval.string = qstrdup( yytext + 1 ); input(); /* discard the '"' */ return STRING; } |