summaryrefslogtreecommitdiffstats
path: root/src/Core
diff options
context:
space:
mode:
Diffstat (limited to 'src/Core')
-rw-r--r--src/Core/Signals/Connection.h2
-rw-r--r--src/Core/Signals/GenericSignal.h2
-rw-r--r--src/Core/export.h4
3 files changed, 4 insertions, 4 deletions
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 <typename FunctionType>
-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