summaryrefslogtreecommitdiffstats
path: root/src/Core
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-08-18 22:15:54 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-08-18 22:15:54 +0200
commit28f25233eeadad268e09d873429bd6f484d0bc86 (patch)
tree7a77f5bd51e3ecd1e03b4d8ade981a076c3d84e4 /src/Core
parentdb5ad2e09a6b38e841463dbe7eb076492b62c948 (diff)
downloadmad-28f25233eeadad268e09d873429bd6f484d0bc86.tar
mad-28f25233eeadad268e09d873429bd6f484d0bc86.zip
Anpassungen fuer MinGW
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