Commit be508a44 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Splash.c: nxagentRemoveSplashWindow: drop unused parameter

parent 612cbcc4
......@@ -380,7 +380,7 @@ Reply Total Cached Bits In Bits Out Bits/Reply Ratio
if (!nxagentWMPassed && (nxagentWMtimeout < currentDispatch))
{
nxagentRemoveSplashWindow(NULL);
nxagentRemoveSplashWindow();
}
nxagentClients = nClients;
......@@ -590,7 +590,7 @@ ProcReparentWindow(register ClientPtr client)
if (!nxagentWMPassed)
{
nxagentRemoveSplashWindow(pWin);
nxagentRemoveSplashWindow();
}
pParent = (WindowPtr)SecurityLookupWindow(stuff->parent, client,
......
......@@ -681,7 +681,7 @@ Bool nxagentReconnectSession(void)
#endif
saveAgentState("RUNNING");
nxagentRemoveSplashWindow(NULL);
nxagentRemoveSplashWindow();
/*
* We let the proxy flush the link on our behalf
......
......@@ -3122,7 +3122,7 @@ int nxagentShadowPoll(PixmapPtr nxagentShadowPixmapPtr, GCPtr nxagentShadowGCPtr
{
if (!nxagentWMPassed)
{
nxagentRemoveSplashWindow(NULL);
nxagentRemoveSplashWindow();
}
NXShadowExportChanges(&numRects, &ptBox);
......
......@@ -378,7 +378,7 @@ void nxagentPaintLogo(Window win, GC gc, int scale, int width, int height)
#endif
}
void nxagentRemoveSplashWindow(WindowPtr pWin)
void nxagentRemoveSplashWindow(void)
{
if (nxagentReconnectTrap)
return;
......
......@@ -48,7 +48,6 @@ extern Window nxagentSplashWindow;
extern int nxagentWMPassed;
extern void nxagentShowSplashWindow(Window);
extern void nxagentRemoveSplashWindow(WindowPtr pWin);
extern void nxagentRemoveSplashWindow();
#endif /* __Splash_H__ */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment