mirror of
https://github.com/gryf/wmaker.git
synced 2026-01-26 09:35:49 +01:00
WINGs: Marked args as unused for compiler in Notification callback code
The mechanism of Notifications in the WINGs toolkit is relying on callbacks to dispatch notifications, which means having a fixed argument list for the handling function. It is then correct to not use all the arguments, so this patch adds the appropriate stuff to avoid a false report from compiler. Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
committed by
Carlos R. Mafra
parent
58961dce72
commit
fed1bf4de3
@@ -307,6 +307,9 @@ static void selectionNotification(void *observerData, WMNotification * notificat
|
||||
|
||||
static void realizeObserver(void *self, WMNotification * not)
|
||||
{
|
||||
/* Parameter not used, but tell the compiler that it is ok */
|
||||
(void) not;
|
||||
|
||||
W_CreateIC(((TextField *) self)->view);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user