diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-13 13:19:38 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-13 13:19:38 +0900 |
commit | 8ab509f2fbc16905a7a214a3c5e0ee6d61cb1f5e (patch) | |
tree | af0167b283090cc49d530b38bbd90640bd214d47 | |
parent | 4419ae48793b07591929aff8c69a381e7a5bbb32 (diff) | |
download | tdesdk-8ab509f2fbc16905a7a214a3c5e0ee6d61cb1f5e.tar.gz tdesdk-8ab509f2fbc16905a7a214a3c5e0ee6d61cb1f5e.zip |
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | scripts/kde-devel-emacs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kde-devel-emacs.el b/scripts/kde-devel-emacs.el index ade3a20b..ad3cebe0 100644 --- a/scripts/kde-devel-emacs.el +++ b/scripts/kde-devel-emacs.el @@ -165,7 +165,7 @@ With arg, to it arg times." (and (re-search-backward "^class[ \t]" nil t) (progn (forward-word 1) - (while (looking-at "[ \t]*Q_EXPORT") + (while (looking-at "[ \t]*TQ_EXPORT") (forward-word 2)) (while (looking-at "[ \t]") (forward-char 1)) @@ -1618,7 +1618,7 @@ With arg, to it arg times." (re-search-backward "^class \\([a-zA-Z0-9_]+\\)[ \t]*\\([a-zA-Z0-9_]*\\)" nil t) (set class (match-string 1)) (set save (match-string 2)) - (and (string-match "Q_EXPORT" class) + (and (string-match "TQ_EXPORT" class) (set class save)) (message (concat class "::" fn)) ) |