mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-23 14:42:29 +01:00
wmaker: Marked args as unused for compiler in XExposeEvent callback code
The custom drawing code for windows is handled using callback functions, which means having a fixed argument list for that 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
9330ddf946
commit
c34a55ed5a
@@ -1432,6 +1432,10 @@ void wClipIconPaint(void)
|
||||
|
||||
static void clipIconExpose(WObjDescriptor *desc, XEvent *event)
|
||||
{
|
||||
/* Parameter not used, but tell the compiler that it is ok */
|
||||
(void) desc;
|
||||
(void) event;
|
||||
|
||||
wClipIconPaint();
|
||||
}
|
||||
|
||||
@@ -4311,6 +4315,9 @@ static char * findUniqueName(WScreen *scr, const char *instance_basename)
|
||||
|
||||
static void drawerIconExpose(WObjDescriptor *desc, XEvent *event)
|
||||
{
|
||||
/* Parameter not used, but tell the compiler that it is ok */
|
||||
(void) event;
|
||||
|
||||
wDrawerIconPaint((WAppIcon *) desc->parent);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user