Fix export

svn path=/trunk/playground/graphics/okular/; revision=608784
This commit is contained in:
Laurent Montel 2006-11-28 12:40:11 +00:00
parent 1987645027
commit 66d806a6df

View file

@ -13,7 +13,21 @@
/* needed for KDE_EXPORT macros */
#include <kdemacros.h>
#if defined Q_OS_WIN
#ifndef OKULAR_EXPORT
# ifdef MAKE_OKULARCORE_LIB
# define OKULAR_EXPORT KDE_EXPORT
# else
# define OKULAR_EXPORT KDE_IMPORT
# endif
#endif
#else /* UNIX*/
/* export statements for unix */
#define OKULAR_EXPORT KDE_EXPORT
#endif
#endif