mirror of
https://github.com/gryf/wmaker.git
synced 2026-02-02 06:05:45 +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
@@ -108,7 +108,7 @@ static WMArray *getTypesFromThreeTypes(WMScreen * scr, XClientMessageEvent * eve
|
||||
return typeList;
|
||||
}
|
||||
|
||||
void storeRequiredTypeList(WMDraggingInfo * info)
|
||||
static void storeRequiredTypeList(WMDraggingInfo * info)
|
||||
{
|
||||
WMView *destView = XDND_DEST_VIEW(info);
|
||||
WMScreen *scr = W_VIEW_SCREEN(destView);
|
||||
@@ -140,7 +140,7 @@ void storeRequiredTypeList(WMDraggingInfo * info)
|
||||
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 */
|
||||
int nextTypeIndex;
|
||||
@@ -155,7 +155,7 @@ char *getNextRequestedDataType(WMDraggingInfo * info)
|
||||
|
||||
/* ----- Action list ----- */
|
||||
|
||||
WMArray *sourceOperationList(WMScreen * scr, Window sourceWin)
|
||||
static WMArray *sourceOperationList(WMScreen * scr, Window sourceWin)
|
||||
{
|
||||
Atom dataType, *actionList;
|
||||
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);
|
||||
|
||||
@@ -436,7 +436,7 @@ Bool requestDropDataInSelection(WMView * destView, const char *type)
|
||||
return False;
|
||||
}
|
||||
|
||||
Bool requestDropData(WMDraggingInfo * info)
|
||||
static Bool requestDropData(WMDraggingInfo * info)
|
||||
{
|
||||
WMView *destView = XDND_DEST_VIEW(info);
|
||||
char *nextType = getNextRequestedDataType(info);
|
||||
@@ -832,7 +832,7 @@ static void realizedObserver(void *self, WMNotification * notif)
|
||||
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);
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -17,7 +17,7 @@ typedef struct W_TreeNode {
|
||||
WMFreeDataProc *destructor;
|
||||
} W_TreeNode;
|
||||
|
||||
void destroyNode(void *data)
|
||||
static void destroyNode(void *data)
|
||||
{
|
||||
WMTreeNode *aNode = (WMTreeNode *) data;
|
||||
|
||||
|
||||
@@ -367,7 +367,7 @@ static void paintMenuEntry(PopUpButton * bPtr, int index, int highlight)
|
||||
}
|
||||
}
|
||||
|
||||
Pixmap makeMenuPixmap(PopUpButton * bPtr)
|
||||
static Pixmap makeMenuPixmap(PopUpButton * bPtr)
|
||||
{
|
||||
Pixmap pixmap;
|
||||
W_Screen *scr = bPtr->view->screen;
|
||||
|
||||
@@ -2047,7 +2047,7 @@ static void releaseSelection(Text * 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;
|
||||
Display *dpy = tPtr->view->screen->display;
|
||||
@@ -2788,7 +2788,7 @@ static WMDragDestinationProcs _DragDestinationProcs = {
|
||||
NULL
|
||||
};
|
||||
|
||||
char *getStream(WMText * tPtr, int sel, int array)
|
||||
static char *getStream(WMText * tPtr, int sel, int array)
|
||||
{
|
||||
TextBlock *tb = NULL;
|
||||
char *text = NULL;
|
||||
@@ -2864,7 +2864,7 @@ static void releaseStreamObjects(void *data)
|
||||
wfree(data);
|
||||
}
|
||||
|
||||
WMArray *getStreamObjects(WMText * tPtr, int sel)
|
||||
static WMArray *getStreamObjects(WMText * tPtr, int sel)
|
||||
{
|
||||
WMArray *array = WMCreateArrayWithDestructor(4, releaseStreamObjects);
|
||||
WMData *data;
|
||||
|
||||
Reference in New Issue
Block a user