diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-23 12:47:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-26 11:28:13 +0900 |
commit | 2da5c318755733be01539803f3f7e3508f39efd6 (patch) | |
tree | 59fe3a304ee855a858fcf9f77ed97eb344ad7e52 | |
parent | 22a657c153844f17d896ead5bf7fdf6a335f6233 (diff) | |
download | kscope-2da5c318755733be01539803f3f7e3508f39efd6.tar.gz kscope-2da5c318755733be01539803f3f7e3508f39efd6.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 0d7538c2e0876fba4d529c9c56dff4f4aa6e05e6)
-rw-r--r-- | src/dotscan.lpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dotscan.lpp b/src/dotscan.lpp index dede564..23754bc 100644 --- a/src/dotscan.lpp +++ b/src/dotscan.lpp @@ -22,14 +22,14 @@ float [0-9]*\.[0-9]+ "node" return NODE; "->" return DIR_EDGE; "--" return UNDIR_EDGE; -{name} { yylval.pText = new QString(yytext); return NAME; } +{name} { yylval.pText = new TQString(yytext); return NAME; } {string} { - QString str = &yytext[1]; - yylval.pText = new QString(str.left(yyleng - 2)); + TQString str = &yytext[1]; + yylval.pText = new TQString(str.left(yyleng - 2)); return STRING; } -{number} { yylval.pText = new QString(yytext); return NUMBER; } -{float} { yylval.pText = new QString(yytext); return NUMBER; } +{number} { yylval.pText = new TQString(yytext); return NUMBER; } +{float} { yylval.pText = new TQString(yytext); return NUMBER; } {space} ; . return yytext[0]; |