| @@ -45,7 +45,7 @@ public: | |||||
| fLastHeight(0), | fLastHeight(0), | ||||
| leakDetector_CarlaBridgeToolkitGtk() | leakDetector_CarlaBridgeToolkitGtk() | ||||
| { | { | ||||
| carla_debug("CarlaBridgeToolkitGtk::CarlaBridgeToolkitGtk(%p, \"%s\")", client, windowTitle); | |||||
| carla_debug("CarlaBridgeToolkitGtk::CarlaBridgeToolkitGtk(%p)", ui); | |||||
| } | } | ||||
| ~CarlaBridgeToolkitGtk() override | ~CarlaBridgeToolkitGtk() override | ||||
| @@ -59,9 +59,7 @@ public: | |||||
| fNeedsShow(false), | fNeedsShow(false), | ||||
| leakDetector_CarlaBridgeToolkitQt() | leakDetector_CarlaBridgeToolkitQt() | ||||
| { | { | ||||
| carla_debug("CarlaBridgeToolkitQt::CarlaBridgeToolkitQt(%p, \"%s\")", client, windowTitle); | |||||
| connect(this, SIGNAL(setSizeSafeSignal(int,int)), SLOT(setSizeSafeSlot(int,int))); | |||||
| carla_debug("CarlaBridgeToolkitQt::CarlaBridgeToolkitQt(%p)", ui); | |||||
| } | } | ||||
| ~CarlaBridgeToolkitQt() override | ~CarlaBridgeToolkitQt() override | ||||
| @@ -13,10 +13,10 @@ include $(CWD)/Makefile.mk | |||||
| BINDIR := $(CWD)/../bin | BINDIR := $(CWD)/../bin | ||||
| ifeq ($(DEBUG),true) | ifeq ($(DEBUG),true) | ||||
| OBJDIR := $(CWD)/../build/bridges-plugin/Debug | |||||
| OBJDIR := $(CWD)/../build/bridges-ui/Debug | |||||
| MODULEDIR := $(CWD)/../build/modules/Debug | MODULEDIR := $(CWD)/../build/modules/Debug | ||||
| else | else | ||||
| OBJDIR := $(CWD)/../build/bridges-plugin/Release | |||||
| OBJDIR := $(CWD)/../build/bridges-ui/Release | |||||
| MODULEDIR := $(CWD)/../build/modules/Release | MODULEDIR := $(CWD)/../build/modules/Release | ||||
| endif | endif | ||||
| @@ -1062,7 +1062,7 @@ CarlaPipeServer::CarlaPipeServer() noexcept | |||||
| carla_debug("CarlaPipeServer::CarlaPipeServer()"); | carla_debug("CarlaPipeServer::CarlaPipeServer()"); | ||||
| } | } | ||||
| CarlaPipeServer::~CarlaPipeServer() noexcept | |||||
| CarlaPipeServer::~CarlaPipeServer() /*noexcept*/ | |||||
| { | { | ||||
| carla_debug("CarlaPipeServer::~CarlaPipeServer()"); | carla_debug("CarlaPipeServer::~CarlaPipeServer()"); | ||||
| @@ -1389,7 +1389,7 @@ CarlaPipeClient::CarlaPipeClient() noexcept | |||||
| carla_debug("CarlaPipeClient::CarlaPipeClient()"); | carla_debug("CarlaPipeClient::CarlaPipeClient()"); | ||||
| } | } | ||||
| CarlaPipeClient::~CarlaPipeClient() noexcept | |||||
| CarlaPipeClient::~CarlaPipeClient() /*noexcept*/ | |||||
| { | { | ||||
| carla_debug("CarlaPipeClient::~CarlaPipeClient()"); | carla_debug("CarlaPipeClient::~CarlaPipeClient()"); | ||||
| @@ -257,7 +257,7 @@ public: | |||||
| /*! | /*! | ||||
| * Destructor. | * Destructor. | ||||
| */ | */ | ||||
| ~CarlaPipeServer() noexcept override; | |||||
| ~CarlaPipeServer() /*noexcept*/ override; | |||||
| /*! | /*! | ||||
| * Start the pipe server using @a filename with 2 arguments. | * Start the pipe server using @a filename with 2 arguments. | ||||
| @@ -293,7 +293,7 @@ public: | |||||
| /*! | /*! | ||||
| * Destructor. | * Destructor. | ||||
| */ | */ | ||||
| ~CarlaPipeClient() noexcept override; | |||||
| ~CarlaPipeClient() /*noexcept*/ override; | |||||
| /*! | /*! | ||||
| * Initialize the pipes used by a server. | * Initialize the pipes used by a server. | ||||