summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-02-13 11:03:23 +0900
committerMichele Calgaro <[email protected]>2024-02-14 21:10:45 +0900
commit843f25dadc4cc2fd649cf6dee430f66f2256c3a1 (patch)
tree78bc068688abd09e8e8d368139078ee5050b5f03
parente7e12a9aeceb2eef5ab3870e633a6bde768527e8 (diff)
downloadkaffeine-mozilla-843f25dadc4cc2fd649cf6dee430f66f2256c3a1.tar.gz
kaffeine-mozilla-843f25dadc4cc2fd649cf6dee430f66f2256c3a1.zip
Replace Q_WS_* defines with TQ_WS_* equivalents
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit e7c8d424497ed8bcca65a1985d341a26ed359b05)
-rw-r--r--src/plugin-exports.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugin-exports.h b/src/plugin-exports.h
index 864b133..cd9c732 100644
--- a/src/plugin-exports.h
+++ b/src/plugin-exports.h
@@ -23,7 +23,7 @@
#ifdef __KDE_HAVE_GCC_VISIBILITY
#define PLUGIN_NO_EXPORT __attribute__ ((visibility("hidden")))
#define PLUGIN_EXPORT __attribute__ ((visibility("default")))
-#elif defined(Q_WS_WIN)
+#elif defined(TQ_WS_WIN)
#define PLUGIN_NO_EXPORT
#define PLUGIN_EXPORT __declspec(dllexport)
#else