summaryrefslogtreecommitdiffstats
path: root/src/moc/moc.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/moc/moc.l')
-rw-r--r--src/moc/moc.l8
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;
}