diff options
author | Matt Turner <mattst88@gmail.com> | 2011-08-02 00:38:59 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2011-08-02 00:38:59 -0400 |
commit | 4b7af3dca51bccb86816d7c0e8995ce009f9999e (patch) | |
tree | f8e1037d6e583ffc5f7b571e188fc5fdeadd39bb /src/Repeater.c | |
parent | 004a1d1746c62bb44b440df66f196d27d12d16d6 (diff) |
Strip trailing whitespace.
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/Repeater.c')
-rw-r--r-- | src/Repeater.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Repeater.c b/src/Repeater.c index f752ae7..7634f08 100644 --- a/src/Repeater.c +++ b/src/Repeater.c @@ -23,7 +23,7 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. * * Author: Jim Fulton, MIT X Consortium - * + * * This widget is used for press-and-hold style buttons. */ @@ -52,7 +52,7 @@ static void tic(); /* clock timeout */ /* * Translations to give user interface of press-notify...-release_or_leave */ -static char defaultTranslations[] = +static char defaultTranslations[] = "<EnterWindow>: highlight() \n\ <LeaveWindow>: unhighlight() \n\ <Btn1Down>: set() start() \n\ @@ -228,7 +228,7 @@ static Boolean SetValues (gcur, greq, gnew, args, num_args) Boolean redisplay = FALSE; if (cur->repeater.minimum_delay != new->repeater.minimum_delay) { - if (new->repeater.next_delay < new->repeater.minimum_delay) + if (new->repeater.next_delay < new->repeater.minimum_delay) new->repeater.next_delay = new->repeater.minimum_delay; } @@ -251,7 +251,7 @@ static void ActionStart (gw, event, params, num_params) RepeaterWidget rw = (RepeaterWidget) gw; CLEAR_TIMEOUT (rw); - if (rw->repeater.start_callbacks) + if (rw->repeater.start_callbacks) XtCallCallbackList (gw, rw->repeater.start_callbacks, (XtPointer)NULL); DO_CALLBACK (rw); @@ -270,7 +270,7 @@ static void ActionStop (gw, event, params, num_params) RepeaterWidget rw = (RepeaterWidget) gw; CLEAR_TIMEOUT ((RepeaterWidget) gw); - if (rw->repeater.stop_callbacks) + if (rw->repeater.stop_callbacks) XtCallCallbackList (gw, rw->repeater.stop_callbacks, (XtPointer)NULL); } |