summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-02-13 11:03:23 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-02-13 11:03:23 +0900
commite7c8d424497ed8bcca65a1985d341a26ed359b05 (patch)
tree78bc068688abd09e8e8d368139078ee5050b5f03
parent862a45d22e61d427ee448b298f0972741b84af63 (diff)
downloadkaffeine-mozilla-e7c8d424.tar.gz
kaffeine-mozilla-e7c8d424.zip
Replace Q_WS_* defines with TQ_WS_* equivalents
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-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