From 87bf901ae6387bc58e670a3adf88ffd7d465a281 Mon Sep 17 00:00:00 2001 From: Marcus Eggenberger Date: Mon, 24 Aug 2009 23:36:00 +0200 Subject: [PATCH 1/1] oopsie... there were some macros missing on windows... --- src/common/syncableobject.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/common/syncableobject.h b/src/common/syncableobject.h index 01fb3953..611ef847 100644 --- a/src/common/syncableobject.h +++ b/src/common/syncableobject.h @@ -100,11 +100,12 @@ private: # define REQUEST(...) sync_call__(SignalProxy::Client, (__FUNCTION__ + _classNameOffset__) , __VA_ARGS__); #else # define SYNC(...) sync_call__(SignalProxy::Server, __func__, __VA_ARGS__); -# define SYNC_OTHER(x, ...) sync_call__(SignalProxy::Server, #x, __VA_ARGS__); # define REQUEST(...) sync_call__(SignalProxy::Client, __func__, __VA_ARGS__); -# define REQUEST_OTHER(x, ...) sync_call__(SignalProxy::Client, #x, __VA_ARGS__); #endif //Q_WS_WIN +#define SYNC_OTHER(x, ...) sync_call__(SignalProxy::Server, #x, __VA_ARGS__); +#define REQUEST_OTHER(x, ...) sync_call__(SignalProxy::Client, #x, __VA_ARGS__); + #define ARG(x) const_cast(reinterpret_cast(&x)) #define NO_ARG 0 -- 2.20.1