From 52b46d05219cf9898ee4adae7c8c2702adb1ba23 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Sun, 26 Jan 2014 12:38:03 +0100 Subject: qt4/qt5: improve naming of internal export/import macros use something less generic than LIB_EXPORT/LIB_IMPORT --- qt4/src/poppler-export.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'qt4/src') diff --git a/qt4/src/poppler-export.h b/qt4/src/poppler-export.h index 7661fe9e..0e5d0a02 100644 --- a/qt4/src/poppler-export.h +++ b/qt4/src/poppler-export.h @@ -3,15 +3,15 @@ * This is needed for setting the visibility on windows, it will have no effect on other platforms. */ #if defined(_WIN32) -# define LIB_EXPORT __declspec(dllexport) -# define LIB_IMPORT __declspec(dllimport) +# define _POPPLER_QT4_LIB_EXPORT __declspec(dllexport) +# define _POPPLER_QT4_LIB_IMPORT __declspec(dllimport) #else -# define LIB_EXPORT -# define LIB_IMPORT +# define _POPPLER_QT4_LIB_EXPORT +# define _POPPLER_QT4_LIB_IMPORT #endif #ifdef poppler_qt4_EXPORTS -# define POPPLER_QT4_EXPORT LIB_EXPORT +# define POPPLER_QT4_EXPORT _POPPLER_QT4_LIB_EXPORT #else -# define POPPLER_QT4_EXPORT LIB_IMPORT +# define POPPLER_QT4_EXPORT _POPPLER_QT4_LIB_IMPORT #endif -- cgit v1.2.3