1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
$NetBSD: patch-winroot.c,v 1.1 2013/03/28 21:40:12 joerg Exp $
--- winroot.c.orig 2013-03-28 19:50:18.000000000 +0000
+++ winroot.c
@@ -190,11 +190,8 @@ matchKeystrokeToSpec(event,spec)
* crossed through the root window into a child window, and we will get the
* EnterNotify for that child window.
*/
-static int
-eventEnterNotify(dpy, pEvent, winInfo)
- Display *dpy;
- XEvent *pEvent;
- WinRoot *winInfo;
+static void
+eventEnterNotify(Display *dpy, XEvent *pEvent, WinRoot *winInfo)
{
if (pEvent->xcrossing.detail == NotifyNonlinearVirtual)
return;
@@ -282,11 +279,8 @@ selectInBox(dpy, winInfo, boxX, boxY, bo
/*
* eventMotionNotify - the pointer is moving
*/
-static int
-eventMotionNotify(dpy, pEvent, winInfo)
- Display *dpy;
- XEvent *pEvent;
- WinRoot *winInfo;
+static void
+eventMotionNotify(Display *dpy, XEvent *pEvent, WinRoot *winInfo)
{
int (*selectFunc)();
@@ -336,11 +330,8 @@ eventMotionNotify(dpy, pEvent, winInfo)
* If the user clicks in the window, the focus is set to the no-focus window,
* and the PRIMARY and SECONDARY selections are acquired and nulled.
*/
-static int
-eventButtonRelease(dpy, pEvent, winInfo)
- Display *dpy;
- XEvent *pEvent;
- WinRoot *winInfo;
+static void
+eventButtonRelease(Display *dpy, XEvent *pEvent, WinRoot *winInfo)
{
if (!AllButtonsUp(pEvent))
return;
@@ -368,11 +359,8 @@ eventButtonRelease(dpy, pEvent, winInfo)
* or by issuing an AllowEvents request, and (3) ungrab the pointer if the
* child's handler didn't issue a grab of its own.
*/
-static int
-eventButtonPress(dpy, pEvent, winInfo)
- Display *dpy;
- XEvent *pEvent;
- WinRoot *winInfo;
+static void
+eventButtonPress(Display *dpy, XEvent *pEvent, WinRoot *winInfo)
{
SemanticAction a;
WinGeneric *child;
@@ -442,12 +430,9 @@ eventKeyPressRelease(dpy, pEvent, winInf
/*
* eventPropertyNotify - a root property has changed
*/
-static int
+static void
/* ARGSUSED */
-eventPropertyNotify(dpy, pEvent, winInfo)
- Display *dpy;
- XEvent *pEvent;
- WinRoot *winInfo;
+eventPropertyNotify(Display *dpy, XEvent *pEvent, WinRoot *winInfo)
{
unsigned long nitems, remain;
char *resourceString;
|