summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-09 22:21:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-02-09 23:47:09 +0900
commit15dc4a7cbd57b18f29b91236ea5e25a438e896c9 (patch)
treed4d36992b16eca79874182649399ffd50a66b6f3
parent9d52e5c05d291d7f206910932eeaee81b14900a2 (diff)
downloadsip4-tqt-15dc4a7cbd57b18f29b91236ea5e25a438e896c9.tar.gz
sip4-tqt-15dc4a7cbd57b18f29b91236ea5e25a438e896c9.zip
Fix pytde FTBFS caused by commit 5cfeb8e
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a0a0ac290ef97af13797a33bae01a5abde3c6825)
-rw-r--r--sipgen/lexer.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/sipgen/lexer.l b/sipgen/lexer.l
index b27902b..19e82cb 100644
--- a/sipgen/lexer.l
+++ b/sipgen/lexer.l
@@ -86,9 +86,9 @@ public {return TK_PUBLIC;}
protected {return TK_PROTECTED;}
private {return TK_PRIVATE;}
signals {return TK_SIGNALS;}
-TQ_SIGNAL {return TK_SIGNAL_METHOD;}
+signal {return TK_SIGNAL_METHOD;}
slots {return TK_SLOTS;}
-TQ_SLOT {return TK_SLOT_METHOD;}
+slot {return TK_SLOT_METHOD;}
char {return TK_CHAR;}
wchar_t {return TK_WCHAR_T;}
bool {return TK_BOOL;}