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 22:21:20 +0900
commita0a0ac290ef97af13797a33bae01a5abde3c6825 (patch)
treed4d36992b16eca79874182649399ffd50a66b6f3
parent29c31825fb3e7507c2dd8f8622f671e4d7542036 (diff)
downloadsip4-tqt-a0a0ac290ef97af13797a33bae01a5abde3c6825.tar.gz
sip4-tqt-a0a0ac290ef97af13797a33bae01a5abde3c6825.zip
Fix pytde FTBFS caused by commit 746782b
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-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;}