Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6d45e7a9
Commit
6d45e7a9
authored
Mar 16, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Mar 16, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid unnecessary error messages.
parent
5b803350
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
10 deletions
+16
-10
event.c
windows/x11drv/event.c
+16
-10
No files found.
windows/x11drv/event.c
View file @
6d45e7a9
...
...
@@ -385,7 +385,22 @@ void X11DRV_EVENT_Synchronize()
static
void
EVENT_ProcessEvent
(
XEvent
*
event
)
{
WND
*
pWnd
;
switch
(
event
->
type
)
{
/* We get all these because of StructureNotifyMask.
This check is placed here to avoid getting error messages below,
as X might send some of these even for windows that have already
been deleted ... */
case
UnmapNotify
:
case
CirculateNotify
:
case
CreateNotify
:
case
DestroyNotify
:
case
GravityNotify
:
case
ReparentNotify
:
return
;
}
if
(
TSXFindContext
(
display
,
event
->
xany
.
window
,
winContext
,
(
char
**
)
&
pWnd
)
!=
0
)
{
if
(
event
->
type
==
ClientMessage
)
{
...
...
@@ -490,15 +505,6 @@ static void EVENT_ProcessEvent( XEvent *event )
case
NoExpose
:
break
;
/* We get all these because of StructureNotifyMask. */
case
UnmapNotify
:
case
CirculateNotify
:
case
CreateNotify
:
case
DestroyNotify
:
case
GravityNotify
:
case
ReparentNotify
:
break
;
case
MapNotify
:
if
(
!
pWnd
)
return
;
EVENT_MapNotify
(
pWnd
->
hwndSelf
,
(
XMapEvent
*
)
event
);
...
...
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