From 28f25233eeadad268e09d873429bd6f484d0bc86 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 18 Aug 2009 22:15:54 +0200 Subject: Anpassungen fuer MinGW --- src/Core/Signals/Connection.h | 2 +- src/Core/Signals/GenericSignal.h | 2 +- src/Core/export.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Core') diff --git a/src/Core/Signals/Connection.h b/src/Core/Signals/Connection.h index fde959d..ea85518 100644 --- a/src/Core/Signals/Connection.h +++ b/src/Core/Signals/Connection.h @@ -28,7 +28,7 @@ namespace Signals { class SignalBase; -class MAD_CORE_EXPORT Connection { +class Connection { private: friend class SignalBase; diff --git a/src/Core/Signals/GenericSignal.h b/src/Core/Signals/GenericSignal.h index 4f783e3..df57f96 100644 --- a/src/Core/Signals/GenericSignal.h +++ b/src/Core/Signals/GenericSignal.h @@ -32,7 +32,7 @@ namespace Core { namespace Signals { template -class MAD_CORE_EXPORT GenericSignal : protected SignalBase { +class GenericSignal : protected SignalBase { public: typedef FunctionType slot_type; diff --git a/src/Core/export.h b/src/Core/export.h index 2ccd147..a508d4d 100644 --- a/src/Core/export.h +++ b/src/Core/export.h @@ -1,9 +1,9 @@ #ifndef MAD_CORE_EXPORT # ifdef _WIN32 # ifdef MAD_CORE_EXPORTS -# define MAD_CORE_EXPORT _declspec(dllexport) +# define MAD_CORE_EXPORT __declspec(dllexport) # else -# define MAD_CORE_EXPORT _declspec(dllimport) +# define MAD_CORE_EXPORT __declspec(dllimport) # endif # else # define MAD_CORE_EXPORT -- cgit v1.2.3