diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-02 11:25:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-02-03 00:08:01 +0900 |
commit | 67aa6b188ef42c2162da6172856ffbd4d7789414 (patch) | |
tree | edb62b826c86a0354cd5b9501fecd7c65591961b /chalk/core | |
parent | cf1bb69b2973368b5ac0d7d347a7fa7b8dfa43a1 (diff) | |
download | koffice-67aa6b18.tar.gz koffice-67aa6b18.zip |
Replace Q_SIGNALS and Q_SLOTS
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 63c2fcedcd98caf7979bc4797029cbcb32433a5a)
Diffstat (limited to 'chalk/core')
-rwxr-xr-x | chalk/core/createdcop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chalk/core/createdcop.py b/chalk/core/createdcop.py index 002698186..ffe9a9d6e 100755 --- a/chalk/core/createdcop.py +++ b/chalk/core/createdcop.py @@ -99,7 +99,7 @@ def parseHeader(headerfile, classname): line.startswith("TQ_OBJECT") or line.startswith("#") or line.startswith("}") or - line.startswith("public Q_SLOTS:") or + line.startswith("public slots:") or line.find("~") != -1 or len(line) == 0 ): |