]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/libdolphin_export.h
Show file size when hovering an item
[dolphin.git] / src / libdolphin_export.h
index 05b22513bc0cb7c24e21937ad6d8284e3cafd077..4630398b8850225012d3163ea574390634cde31b 100644 (file)
 #include <kdemacros.h>
 
 /* needed, because e.g. Q_OS_UNIX is so frequently used */
-#include <QtCore/qglobal.h>
+#include <QtCore/QBool>
 
-#ifdef MAKE_DOLPHINPRIVATE_LIB
-# define LIBDOLPHINPRIVATE_EXPORT KDE_EXPORT
-#else
-# ifdef Q_OS_WIN
-#  define LIBDOLPHINPRIVATE_EXPORT KDE_IMPORT
-# else
+#ifndef LIBDOLPHINPRIVATE_EXPORT
+# if defined(MAKE_DOLPHINPRIVATE_LIB)
+   /* We are building this library */
 #  define LIBDOLPHINPRIVATE_EXPORT KDE_EXPORT
+# else
+   /* We are using this library */
+#  define LIBDOLPHINPRIVATE_EXPORT KDE_IMPORT
 # endif
 #endif
 
-
 #endif
-