From 1ae88f6e04a9b942507e3cbd18e060aac0347a57 Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Wed, 12 Mar 2014 19:21:15 +0100 Subject: [PATCH] Don't export non-library classes --- src/accounts/hatchet/sip/WebSocket.h | 4 +--- src/accounts/hatchet/sip/WebSocketThreadController.h | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/accounts/hatchet/sip/WebSocket.h b/src/accounts/hatchet/sip/WebSocket.h index 62b23c897..2ff69fe15 100644 --- a/src/accounts/hatchet/sip/WebSocket.h +++ b/src/accounts/hatchet/sip/WebSocket.h @@ -18,8 +18,6 @@ #ifndef WEBSOCKET__H #define WEBSOCKET__H -#include "DllMacro.h" - #include "hatchet_config.hpp" #include @@ -37,7 +35,7 @@ class WebSocket; void onMessage( WebSocket* ws, websocketpp::connection_hdl, hatchet_client::message_ptr msg ); void onClose( WebSocket* ws, websocketpp::connection_hdl ); -class DLLEXPORT WebSocket : public QObject +class WebSocket : public QObject { Q_OBJECT public: diff --git a/src/accounts/hatchet/sip/WebSocketThreadController.h b/src/accounts/hatchet/sip/WebSocketThreadController.h index a7511a4b3..0964fffad 100644 --- a/src/accounts/hatchet/sip/WebSocketThreadController.h +++ b/src/accounts/hatchet/sip/WebSocketThreadController.h @@ -18,14 +18,12 @@ #ifndef WEBSOCKET_THREAD_CONTROLLER_H #define WEBSOCKET_THREAD_CONTROLLER_H -#include "DllMacro.h" - #include #include class WebSocket; -class DLLEXPORT WebSocketThreadController : public QThread +class WebSocketThreadController : public QThread { Q_OBJECT