From ff77b6b2e5e3882059de11d55b3a4d1cba38dfc8 Mon Sep 17 00:00:00 2001 From: Christophe CURIS Date: Mon, 8 Dec 2014 22:42:32 +0100 Subject: [PATCH] WINGs: remove internal XDND macros that are not used The group of XDND_* macro do not bring a lot in term of clarity, so it is probable that they will get away someday, but at current time as 2 of them are not used anywhere they get removed to prevent their use in the future. Signed-off-by: Christophe CURIS --- WINGs/dragdestination.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/WINGs/dragdestination.c b/WINGs/dragdestination.c index 2833b886..a3ce8713 100644 --- a/WINGs/dragdestination.c +++ b/WINGs/dragdestination.c @@ -19,9 +19,7 @@ #define XDND_REQUIRED_TYPES(dragInfo) dragInfo->destInfo->requiredTypes #define XDND_SOURCE_ACTION(dragInfo) dragInfo->sourceAction #define XDND_DEST_ACTION(dragInfo) dragInfo->destinationAction -#define XDND_SOURCE_OPERATIONS(dragInfo) dragInfo->destInfo->sourceOperations #define XDND_DROP_DATAS(dragInfo) dragInfo->destInfo->dropDatas -#define XDND_DROP_DATA_COUNT(dragInfo) dragInfo->destInfo->dropDataCount #define XDND_DEST_VIEW_IS_REGISTERED(dragInfo) ((dragInfo->destInfo) != NULL)\ && ((dragInfo->destInfo->destView->dragDestinationProcs) != NULL)