summaryrefslogtreecommitdiffstats
path: root/sipgen/lexer.l
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-22 03:12:38 -0600
committerTimothy Pearson <[email protected]>2011-11-22 03:12:38 -0600
commit7d27356bafd5670adcc8753ab5437b3bf8ffa4be (patch)
tree959eb3757b9dc41290c81c022e45c955573e9a59 /sipgen/lexer.l
parent6c4cc3653e8dd7668295f3e659b7eb4dc571b67c (diff)
downloadsip4-tqt-7d27356bafd5670adcc8753ab5437b3bf8ffa4be.tar.gz
sip4-tqt-7d27356bafd5670adcc8753ab5437b3bf8ffa4be.zip
Initial TQt conversion
Diffstat (limited to 'sipgen/lexer.l')
-rw-r--r--sipgen/lexer.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/sipgen/lexer.l b/sipgen/lexer.l
index 35fb9c2..5c0c96b 100644
--- a/sipgen/lexer.l
+++ b/sipgen/lexer.l
@@ -84,10 +84,10 @@ struct {return TK_STRUCT;}
public {return TK_PUBLIC;}
protected {return TK_PROTECTED;}
private {return TK_PRIVATE;}
-signals {return TK_SIGNALS;}
+Q_SIGNALS {return TK_SIGNALS;}
Q_SIGNALS {return TK_SIGNALS;}
Q_SIGNAL {return TK_SIGNAL_METHOD;}
-slots {return TK_SLOTS;}
+Q_SLOTS {return TK_SLOTS;}
Q_SLOTS {return TK_SLOTS;}
Q_SLOT {return TK_SLOT_METHOD;}
char {return TK_CHAR;}