Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
2c6e3ff0
Commit
2c6e3ff0
authored
Feb 12, 2001
by
Josh DuBois
Committed by
Alexandre Julliard
Feb 12, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a char that should have been signed.
parent
be98c7b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
event.c
windows/x11drv/event.c
+4
-4
No files found.
windows/x11drv/event.c
View file @
2c6e3ff0
...
...
@@ -204,7 +204,7 @@ static void CALLBACK EVENT_ProcessAllEvents( ULONG_PTR arg )
}
/***********************************************************************
*
X11DRV_
Synchronize (X11DRV.@)
* Synchronize (X11DRV.@)
*
* Synchronize with the X server. Should not be used too often.
*/
...
...
@@ -215,7 +215,7 @@ void X11DRV_Synchronize( void )
}
/***********************************************************************
*
X11DRV_
UserRepaintDisable (X11DRV.@)
* UserRepaintDisable (X11DRV.@)
*/
void
X11DRV_UserRepaintDisable
(
BOOL
bDisabled
)
{
...
...
@@ -867,7 +867,7 @@ static void EVENT_FocusOut( HWND hWnd, XFocusChangeEvent *event )
}
/**********************************************************************
*
X11DRV_
CheckFocus (X11DRV.@)
* CheckFocus (X11DRV.@)
*/
BOOL
X11DRV_CheckFocus
(
void
)
{
...
...
@@ -1582,7 +1582,7 @@ static void EVENT_DropFromOffiX( HWND hWnd, XClientMessageEvent *event )
if
(
!
aux_long
&&
p_data
)
/* don't bother if > 64K */
{
char
*
p
=
(
char
*
)
p_data
;
signed
char
*
p
=
(
signed
char
*
)
p_data
;
char
*
p_drop
;
aux_long
=
0
;
...
...
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