summaryrefslogtreecommitdiff
path: root/src/parser.y
diff options
context:
space:
mode:
authorMarius Kintel <marius@kintel.net>2010-11-07 21:29:34 (GMT)
committerMarius Kintel <marius@kintel.net>2010-11-07 21:29:34 (GMT)
commite0a068a0e8678da426e1edd398feab5f4ea4d0f0 (patch)
tree5eaa05991d1652fd10692eb7410143d973db6643 /src/parser.y
parentd310e364d14444a1a27ae2337cfb4bd0ab061113 (diff)
Refactored some QString usage in the backend to std::string
Diffstat (limited to 'src/parser.y')
-rw-r--r--src/parser.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.y b/src/parser.y
index 0cace25..f0a06f5 100644
--- a/src/parser.y
+++ b/src/parser.y
@@ -331,7 +331,7 @@ expr:
TOK_STRING {
$$ = new Expression();
$$->type = "C";
- $$->const_value = new Value(QString($1));
+ $$->const_value = new Value(std::string($1));
free($1);
} |
TOK_NUMBER {
contact: Jan Huwald // Impressum