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
a4f19d18
Commit
a4f19d18
authored
May 18, 2023
by
Brendan Shanks
Committed by
Alexandre Julliard
May 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemac: Add missing event to dbgstr_event().
parent
3d9d52db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
event.c
dlls/winemac.drv/event.c
+2
-0
No files found.
dlls/winemac.drv/event.c
View file @
a4f19d18
...
...
@@ -80,6 +80,7 @@ static const char *dbgstr_event(int type)
"STATUS_ITEM_MOUSE_MOVE"
,
"WINDOW_BROUGHT_FORWARD"
,
"WINDOW_CLOSE_REQUESTED"
,
"WINDOW_DID_MINIMIZE"
,
"WINDOW_DID_UNMINIMIZE"
,
"WINDOW_DRAG_BEGIN"
,
"WINDOW_DRAG_END"
,
...
...
@@ -91,6 +92,7 @@ static const char *dbgstr_event(int type)
"WINDOW_RESIZE_ENDED"
,
"WINDOW_RESTORE_REQUESTED"
,
};
C_ASSERT
(
ARRAYSIZE
(
event_names
)
==
NUM_EVENT_TYPES
);
if
(
0
<=
type
&&
type
<
NUM_EVENT_TYPES
)
return
event_names
[
type
];
return
wine_dbg_sprintf
(
"Unknown event %d"
,
type
);
...
...
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