Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
be508a44
Commit
be508a44
authored
Aug 15, 2019
by
Ulrich Sibiller
Committed by
Mike Gabriel
Aug 27, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Splash.c: nxagentRemoveSplashWindow: drop unused parameter
parent
612cbcc4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
7 deletions
+6
-7
NXdispatch.c
nx-X11/programs/Xserver/hw/nxagent/NXdispatch.c
+2
-2
Reconnect.c
nx-X11/programs/Xserver/hw/nxagent/Reconnect.c
+1
-1
Screen.c
nx-X11/programs/Xserver/hw/nxagent/Screen.c
+1
-1
Splash.c
nx-X11/programs/Xserver/hw/nxagent/Splash.c
+1
-1
Splash.h
nx-X11/programs/Xserver/hw/nxagent/Splash.h
+1
-2
No files found.
nx-X11/programs/Xserver/hw/nxagent/NXdispatch.c
View file @
be508a44
...
...
@@ -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
,
...
...
nx-X11/programs/Xserver/hw/nxagent/Reconnect.c
View file @
be508a44
...
...
@@ -681,7 +681,7 @@ Bool nxagentReconnectSession(void)
#endif
saveAgentState
(
"RUNNING"
);
nxagentRemoveSplashWindow
(
NULL
);
nxagentRemoveSplashWindow
();
/*
* We let the proxy flush the link on our behalf
...
...
nx-X11/programs/Xserver/hw/nxagent/Screen.c
View file @
be508a44
...
...
@@ -3122,7 +3122,7 @@ int nxagentShadowPoll(PixmapPtr nxagentShadowPixmapPtr, GCPtr nxagentShadowGCPtr
{
if
(
!
nxagentWMPassed
)
{
nxagentRemoveSplashWindow
(
NULL
);
nxagentRemoveSplashWindow
();
}
NXShadowExportChanges
(
&
numRects
,
&
ptBox
);
...
...
nx-X11/programs/Xserver/hw/nxagent/Splash.c
View file @
be508a44
...
...
@@ -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
;
...
...
nx-X11/programs/Xserver/hw/nxagent/Splash.h
View file @
be508a44
...
...
@@ -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__ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment