mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-05 11:08:15 +02:00
mi: make miRecolorCursor() static
It's only used inside mipointer.c, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1727>
This commit is contained in:
parent
471147d4b9
commit
6dbb957922
2 changed files with 5 additions and 9 deletions
8
mi/mi.h
8
mi/mi.h
|
|
@ -113,14 +113,6 @@ miDoCopy(DrawablePtr pSrcDrawable,
|
|||
int xOut,
|
||||
int yOut, miCopyProc copyProc, Pixel bitplane, void *closure);
|
||||
|
||||
/* micursor.c */
|
||||
|
||||
extern _X_EXPORT void miRecolorCursor(DeviceIntPtr /* pDev */ ,
|
||||
ScreenPtr /*pScr */ ,
|
||||
CursorPtr /*pCurs */ ,
|
||||
Bool /*displayed */
|
||||
);
|
||||
|
||||
/* midash.c */
|
||||
|
||||
extern _X_EXPORT void miStepDash(int /*dist */ ,
|
||||
|
|
|
|||
|
|
@ -116,6 +116,10 @@ static void miPointerMoveNoEvent(DeviceIntPtr pDev, ScreenPtr pScreen, int x,
|
|||
|
||||
static InternalEvent *mipointermove_events; /* for WarpPointer MotionNotifies */
|
||||
|
||||
static void
|
||||
miRecolorCursor(DeviceIntPtr pDev, ScreenPtr pScr,
|
||||
CursorPtr pCurs, Bool displayed);
|
||||
|
||||
Bool
|
||||
miPointerInitialize(ScreenPtr pScreen,
|
||||
miPointerSpriteFuncPtr spriteFuncs,
|
||||
|
|
@ -289,7 +293,7 @@ miPointerSetCursorPosition(DeviceIntPtr pDev, ScreenPtr pScreen,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
miRecolorCursor(DeviceIntPtr pDev, ScreenPtr pScr,
|
||||
CursorPtr pCurs, Bool displayed)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue