diff options
author | runge <runge@karlrunge.com> | 2010-12-21 12:04:02 -0500 |
---|---|---|
committer | runge <runge@karlrunge.com> | 2010-12-21 12:04:02 -0500 |
commit | 365a22c63cb292ea494f39ebc48a37e322e5eb14 (patch) | |
tree | ca6e87ab396ee00a837b09b2c6cede62aec69dae /x11vnc/xrecord.c | |
parent | d4fabc217e8cd02aca4d248229bb8a030b2bbfe2 (diff) | |
download | libtdevnc-365a22c63cb292ea494f39ebc48a37e322e5eb14.tar.gz libtdevnc-365a22c63cb292ea494f39ebc48a37e322e5eb14.zip |
x11vnc: touchscreen uinput support and Java viewer mousewheel support. See x11vnc/ChangeLog for rest.
Diffstat (limited to 'x11vnc/xrecord.c')
-rw-r--r-- | x11vnc/xrecord.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11vnc/xrecord.c b/x11vnc/xrecord.c index 4f79dce..87e15b9 100644 --- a/x11vnc/xrecord.c +++ b/x11vnc/xrecord.c @@ -73,7 +73,7 @@ void initialize_xrecord(void); void zerodisp_xrecord(void); void shutdown_xrecord(void); int xrecord_skip_keysym(rfbKeySym keysym); -int xrecord_skip_button(int new, int old); +int xrecord_skip_button(int newb, int old); int xrecord_scroll_keysym(rfbKeySym keysym); void check_xrecord_reset(int force); void xrecord_watch(int start, int setby); @@ -410,9 +410,9 @@ int xrecord_skip_keysym(rfbKeySym keysym) { return 0; } -int xrecord_skip_button(int new, int old) { +int xrecord_skip_button(int new_button, int old) { /* unused vars warning: */ - if (new || old) {} + if (new_button || old) {} return 0; } |