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 ...@@ -380,7 +380,7 @@ Reply Total Cached Bits In Bits Out Bits/Reply Ratio
if (!nxagentWMPassed && (nxagentWMtimeout < currentDispatch)) if (!nxagentWMPassed && (nxagentWMtimeout < currentDispatch))
{ {
nxagentRemoveSplashWindow(NULL); nxagentRemoveSplashWindow();
} }
nxagentClients = nClients; nxagentClients = nClients;
...@@ -590,7 +590,7 @@ ProcReparentWindow(register ClientPtr client) ...@@ -590,7 +590,7 @@ ProcReparentWindow(register ClientPtr client)
if (!nxagentWMPassed) if (!nxagentWMPassed)
{ {
nxagentRemoveSplashWindow(pWin); nxagentRemoveSplashWindow();
} }
pParent = (WindowPtr)SecurityLookupWindow(stuff->parent, client, pParent = (WindowPtr)SecurityLookupWindow(stuff->parent, client,
......
...@@ -681,7 +681,7 @@ Bool nxagentReconnectSession(void) ...@@ -681,7 +681,7 @@ Bool nxagentReconnectSession(void)
#endif #endif
saveAgentState("RUNNING"); saveAgentState("RUNNING");
nxagentRemoveSplashWindow(NULL); nxagentRemoveSplashWindow();
/* /*
* We let the proxy flush the link on our behalf * We let the proxy flush the link on our behalf
......
...@@ -3122,7 +3122,7 @@ int nxagentShadowPoll(PixmapPtr nxagentShadowPixmapPtr, GCPtr nxagentShadowGCPtr ...@@ -3122,7 +3122,7 @@ int nxagentShadowPoll(PixmapPtr nxagentShadowPixmapPtr, GCPtr nxagentShadowGCPtr
{ {
if (!nxagentWMPassed) if (!nxagentWMPassed)
{ {
nxagentRemoveSplashWindow(NULL); nxagentRemoveSplashWindow();
} }
NXShadowExportChanges(&numRects, &ptBox); NXShadowExportChanges(&numRects, &ptBox);
......
...@@ -378,7 +378,7 @@ void nxagentPaintLogo(Window win, GC gc, int scale, int width, int height) ...@@ -378,7 +378,7 @@ void nxagentPaintLogo(Window win, GC gc, int scale, int width, int height)
#endif #endif
} }
void nxagentRemoveSplashWindow(WindowPtr pWin) void nxagentRemoveSplashWindow(void)
{ {
if (nxagentReconnectTrap) if (nxagentReconnectTrap)
return; return;
......
...@@ -48,7 +48,6 @@ extern Window nxagentSplashWindow; ...@@ -48,7 +48,6 @@ extern Window nxagentSplashWindow;
extern int nxagentWMPassed; extern int nxagentWMPassed;
extern void nxagentShowSplashWindow(Window); extern void nxagentShowSplashWindow(Window);
extern void nxagentRemoveSplashWindow();
extern void nxagentRemoveSplashWindow(WindowPtr pWin);
#endif /* __Splash_H__ */ #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