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-02 11:25:41 +0900 |
commit | 63c2fcedcd98caf7979bc4797029cbcb32433a5a (patch) | |
tree | 9d7404124628fafdc99e21b8b679e5fc0ea29a24 /chalk/core | |
parent | 56ddbe04dc445c012c568083202ce433c1da7026 (diff) | |
download | koffice-63c2fcedcd98caf7979bc4797029cbcb32433a5a.tar.gz koffice-63c2fcedcd98caf7979bc4797029cbcb32433a5a.zip |
Replace Q_SIGNALS and Q_SLOTS
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 00269818..ffe9a9d6 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 ): |