1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-14 21: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:
Christophe CURIS
2013-05-12 00:24:51 +02:00
committed by Carlos R. Mafra
parent 140249ad0c
commit 4b89104aca
5 changed files with 12 additions and 12 deletions

View File

@@ -108,7 +108,7 @@ static WMArray *getTypesFromThreeTypes(WMScreen * scr, XClientMessageEvent * eve
return typeList; return typeList;
} }
void storeRequiredTypeList(WMDraggingInfo * info) static void storeRequiredTypeList(WMDraggingInfo * info)
{ {
WMView *destView = XDND_DEST_VIEW(info); WMView *destView = XDND_DEST_VIEW(info);
WMScreen *scr = W_VIEW_SCREEN(destView); WMScreen *scr = W_VIEW_SCREEN(destView);
@@ -140,7 +140,7 @@ void storeRequiredTypeList(WMDraggingInfo * info)
XDND_REQUIRED_TYPES(info) = requiredTypes; XDND_REQUIRED_TYPES(info) = requiredTypes;
} }
char *getNextRequestedDataType(WMDraggingInfo * info) static char *getNextRequestedDataType(WMDraggingInfo * info)
{ {
/* get the type of the first data not yet retrieved from selection */ /* get the type of the first data not yet retrieved from selection */
int nextTypeIndex; int nextTypeIndex;
@@ -155,7 +155,7 @@ char *getNextRequestedDataType(WMDraggingInfo * info)
/* ----- Action list ----- */ /* ----- Action list ----- */
WMArray *sourceOperationList(WMScreen * scr, Window sourceWin) static WMArray *sourceOperationList(WMScreen * scr, Window sourceWin)
{ {
Atom dataType, *actionList; Atom dataType, *actionList;
int i, size; int i, size;
@@ -417,7 +417,7 @@ storeDropData(WMView * destView, Atom selection, Atom target, Time timestamp, vo
} }
} }
Bool requestDropDataInSelection(WMView * destView, const char *type) static Bool requestDropDataInSelection(WMView * destView, const char *type)
{ {
WMScreen *scr = W_VIEW_SCREEN(destView); WMScreen *scr = W_VIEW_SCREEN(destView);
@@ -436,7 +436,7 @@ Bool requestDropDataInSelection(WMView * destView, const char *type)
return False; return False;
} }
Bool requestDropData(WMDraggingInfo * info) static Bool requestDropData(WMDraggingInfo * info)
{ {
WMView *destView = XDND_DEST_VIEW(info); WMView *destView = XDND_DEST_VIEW(info);
char *nextType = getNextRequestedDataType(info); char *nextType = getNextRequestedDataType(info);
@@ -832,7 +832,7 @@ static void realizedObserver(void *self, WMNotification * notif)
WMRemoveNotificationObserver(self); WMRemoveNotificationObserver(self);
} }
void W_SetXdndAwareProperty(WMScreen * scr, WMView * view, Atom * types, int typeCount) static void W_SetXdndAwareProperty(WMScreen * scr, WMView * view, Atom * types, int typeCount)
{ {
WMView *toplevel = W_TopLevelOfView(view); WMView *toplevel = W_TopLevelOfView(view);

View File

@@ -78,7 +78,7 @@ void WMDeleteSelectionHandler(WMView * view, Atom selection, Time timestamp)
XUngrabServer(dpy); XUngrabServer(dpy);
} }
void WMDeleteSelectionCallback(WMView * view, Atom selection, Time timestamp) static void WMDeleteSelectionCallback(WMView * view, Atom selection, Time timestamp)
{ {
SelectionCallback *handler; SelectionCallback *handler;
WMArrayIterator iter; WMArrayIterator iter;

View File

@@ -17,7 +17,7 @@ typedef struct W_TreeNode {
WMFreeDataProc *destructor; WMFreeDataProc *destructor;
} W_TreeNode; } W_TreeNode;
void destroyNode(void *data) static void destroyNode(void *data)
{ {
WMTreeNode *aNode = (WMTreeNode *) data; WMTreeNode *aNode = (WMTreeNode *) data;

View File

@@ -367,7 +367,7 @@ static void paintMenuEntry(PopUpButton * bPtr, int index, int highlight)
} }
} }
Pixmap makeMenuPixmap(PopUpButton * bPtr) static Pixmap makeMenuPixmap(PopUpButton * bPtr)
{ {
Pixmap pixmap; Pixmap pixmap;
W_Screen *scr = bPtr->view->screen; W_Screen *scr = bPtr->view->screen;

View File

@@ -2047,7 +2047,7 @@ static void releaseSelection(Text * tPtr)
paintText(tPtr); paintText(tPtr);
} }
WMData *requestHandler(WMView * view, Atom selection, Atom target, void *cdata, Atom * type) static WMData *requestHandler(WMView * view, Atom selection, Atom target, void *cdata, Atom * type)
{ {
Text *tPtr = view->self; Text *tPtr = view->self;
Display *dpy = tPtr->view->screen->display; Display *dpy = tPtr->view->screen->display;
@@ -2788,7 +2788,7 @@ static WMDragDestinationProcs _DragDestinationProcs = {
NULL NULL
}; };
char *getStream(WMText * tPtr, int sel, int array) static char *getStream(WMText * tPtr, int sel, int array)
{ {
TextBlock *tb = NULL; TextBlock *tb = NULL;
char *text = NULL; char *text = NULL;
@@ -2864,7 +2864,7 @@ static void releaseStreamObjects(void *data)
wfree(data); wfree(data);
} }
WMArray *getStreamObjects(WMText * tPtr, int sel) static WMArray *getStreamObjects(WMText * tPtr, int sel)
{ {
WMArray *array = WMCreateArrayWithDestructor(4, releaseStreamObjects); WMArray *array = WMCreateArrayWithDestructor(4, releaseStreamObjects);
WMData *data; WMData *data;