mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-13 04:15:50 +01:00
WINGs: Added a few missing 'static' attributes to functions
Some functions are not meant to be visible by user; the use of the attribute avoid risk of name clash with user functions at link time.
This commit is contained in:
committed by
Carlos R. Mafra
parent
140249ad0c
commit
4b89104aca
@@ -78,7 +78,7 @@ void WMDeleteSelectionHandler(WMView * view, Atom selection, Time timestamp)
|
||||
XUngrabServer(dpy);
|
||||
}
|
||||
|
||||
void WMDeleteSelectionCallback(WMView * view, Atom selection, Time timestamp)
|
||||
static void WMDeleteSelectionCallback(WMView * view, Atom selection, Time timestamp)
|
||||
{
|
||||
SelectionCallback *handler;
|
||||
WMArrayIterator iter;
|
||||
|
||||
Reference in New Issue
Block a user