summaryrefslogtreecommitdiffstats
path: root/sipgen
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-07 11:07:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-02-07 11:28:03 +0900
commit746782ba8bfbc2ddc7d062f471c42d165f8b8a44 (patch)
tree9da8f1010e1b880d96cef24008129ef97ab29d62 /sipgen
parentbce54982a6bf61d292f293127118a5010260b63e (diff)
downloadsip4-tqt-746782ba8bfbc2ddc7d062f471c42d165f8b8a44.tar.gz
sip4-tqt-746782ba8bfbc2ddc7d062f471c42d165f8b8a44.zip
Replace Q_SIGNALS and Q_SLOTS
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'sipgen')
-rw-r--r--sipgen/lexer.l6
1 files changed, 2 insertions, 4 deletions
diff --git a/sipgen/lexer.l b/sipgen/lexer.l
index 91032cc..c6c3f63 100644
--- a/sipgen/lexer.l
+++ b/sipgen/lexer.l
@@ -85,11 +85,9 @@ public {return TK_PUBLIC;}
protected {return TK_PROTECTED;}
private {return TK_PRIVATE;}
signals {return TK_SIGNALS;}
-Q_SIGNALS {return TK_SIGNALS;}
-Q_SIGNAL {return TK_SIGNAL_METHOD;}
+TQ_SIGNAL {return TK_SIGNAL_METHOD;}
slots {return TK_SLOTS;}
-Q_SLOTS {return TK_SLOTS;}
-Q_SLOT {return TK_SLOT_METHOD;}
+TQ_SLOT {return TK_SLOT_METHOD;}
char {return TK_CHAR;}
wchar_t {return TK_WCHAR_T;}
bool {return TK_BOOL;}