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-14 10:39:21 +0900 |
commit | 2a3f66d4fd3b3f873b74c32d6d9af7aa1d0cd353 (patch) | |
tree | 3e7cd0e511ecce0b410feb94120b0f809bce382a | |
parent | d5e7a8219589dc8cbb928685b513aaad93a95775 (diff) | |
download | tdesdk-2a3f66d4fd3b3f873b74c32d6d9af7aa1d0cd353.tar.gz tdesdk-2a3f66d4fd3b3f873b74c32d6d9af7aa1d0cd353.zip |
Replace Q_EXPORT_*/Q_EXTERN defines with TQ_EXPORT_*/TQ_EXTERN
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 8ab509f2fbc16905a7a214a3c5e0ee6d61cb1f5e)
-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)) ) |