diff options
author | Michele Calgaro <[email protected]> | 2024-02-09 22:21:20 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-02-09 22:21:20 +0900 |
commit | a0a0ac290ef97af13797a33bae01a5abde3c6825 (patch) | |
tree | d4d36992b16eca79874182649399ffd50a66b6f3 | |
parent | 29c31825fb3e7507c2dd8f8622f671e4d7542036 (diff) | |
download | sip4-tqt-a0a0ac290ef97af13797a33bae01a5abde3c6825.tar.gz sip4-tqt-a0a0ac290ef97af13797a33bae01a5abde3c6825.zip |
Fix pytde FTBFS caused by commit 746782b
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | sipgen/lexer.l | 4 |
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;} |