diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2010-06-30 11:52:26 +1000 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2011-04-12 15:37:56 -0700 |
commit | dbcf105a03d29ad6541dd851a257393af54f5dd1 (patch) | |
tree | a37e75db6468fcef2c392a416db0b96c0a0b67b6 /xts5/Xlib4/XUndefineCursor.m | |
parent | d12f9c04388ce98953e8cfa75c40e7e3628ff573 (diff) |
Remove superfluous (void) casts.
sed -e "s/\([ ]\)(void) \(.*\)/\1\2/"
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Diffstat (limited to 'xts5/Xlib4/XUndefineCursor.m')
-rw-r--r-- | xts5/Xlib4/XUndefineCursor.m | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xts5/Xlib4/XUndefineCursor.m b/xts5/Xlib4/XUndefineCursor.m index 86c2ecd6..05c5f884 100644 --- a/xts5/Xlib4/XUndefineCursor.m +++ b/xts5/Xlib4/XUndefineCursor.m @@ -156,7 +156,7 @@ struct area ar; CHECK; /* Warp the pointer into the parent. */ - (void) warppointer(display, parent, 0,0); + warppointer(display, parent, 0,0); /* Verify that the current cursor is that of the parent. */ if(spriteiswin(display, parent) == False) { @@ -184,7 +184,7 @@ struct area ar; CHECK; /* Warp the pointer into the child. */ - (void) warppointer(display, w , 0,0); + warppointer(display, w , 0,0); /* Verify that the current cursor is not that of the parent. */ if(spriteiswin(display, parent) != False) { @@ -276,7 +276,7 @@ Bool samedefcursor; if(noext(0) == False) { if(config.alt_screen != -1) { - (void) warppointer(display, DRW(display), 0,0); + warppointer(display, DRW(display), 0,0); altroot = RootWindow(display, config.alt_screen); samedefcursor = spriteiswin(display, altroot); } @@ -297,7 +297,7 @@ Bool samedefcursor; CHECK; /* Warp the pointer into the root window. */ - (void) warppointer(display, w, 0,0); + warppointer(display, w, 0,0); /* Verify that the current cursor is that of the root window. */ if(spriteiswin(display, w) == False) { @@ -307,7 +307,7 @@ Bool samedefcursor; CHECK; /* Warp the pointer to the alternate root window. */ - (void) warppointer(display, altroot, 0,0); + warppointer(display, altroot, 0,0); /* Verify that the current cursor is not the same as that of the default root window. */ if(spriteiswin(display, DRW(display)) != False) { @@ -345,7 +345,7 @@ Bool samedefcursor; CHECK; /* Warp the pointer to the root window. */ - (void) warppointer(display, w, 0,0); + warppointer(display, w, 0,0); /* Verify that the current cursor is that of the root window. */ if(spriteiswin(display, w) == False) { |