diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-14 22:53:52 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-14 22:53:52 -0700 |
commit | 9e9ba1248f9fa8a43bb98be9bea024aaaa4f0d64 (patch) | |
tree | c8624ed43a21d359e245a61a7d893884cc66660e /Clock.c | |
parent | b1def38874735ca15025edd0d3776387fddeb7f3 (diff) |
Strip trailing whitespace
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
git diff -w & git diff -b show no diffs from this change
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'Clock.c')
-rw-r--r-- | Clock.c | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -74,10 +74,10 @@ static XtResource resources[] = { #undef goffset static void ClassInitialize ( void ); -static void Initialize ( Widget greq, Widget gnew, ArgList args, +static void Initialize ( Widget greq, Widget gnew, ArgList args, Cardinal *num_args ); static void Resize ( Widget widget ); -static void Realize ( Widget gw, XtValueMask *valueMask, +static void Realize ( Widget gw, XtValueMask *valueMask, XSetWindowAttributes *attrs ); static void Destroy ( Widget gw ); static void Redisplay ( Widget gw, XEvent *event, Region region ); @@ -163,7 +163,7 @@ static void Initialize (Widget greq, Widget gnew, myXGCV.foreground = w->clock.jewel; w->clock.jewelGC = XtGetGC(gnew, valuemask, &myXGCV); - + myXGCV.foreground = w->core.background_pixel; w->clock.eraseGC = XtGetGC(gnew, valuemask, &myXGCV); } @@ -171,8 +171,8 @@ static void Initialize (Widget greq, Widget gnew, /* wait for Realize to add the timeout */ w->clock.interval_id = 0; - if (w->clock.shape_window && !XShapeQueryExtension (XtDisplay (w), - &shape_event_base, + if (w->clock.shape_window && !XShapeQueryExtension (XtDisplay (w), + &shape_event_base, &shape_error_base)) w->clock.shape_window = False; w->clock.shape_mask = 0; @@ -219,7 +219,7 @@ static void Resize (Widget widget) w->core.height - face_height, face_height, -WINDOW_WIDTH(w)/2, WINDOW_WIDTH(w)/2, -WINDOW_HEIGHT(w)/2, WINDOW_HEIGHT(w)/2); - + /* * allocate a pixmap to draw shapes in */ @@ -231,7 +231,7 @@ static void Resize (Widget widget) XFreePixmap (XtDisplay (w), w->clock.shape_mask); w->clock.shape_mask = None; } - + if (!w->clock.shape_mask) { w->clock.shape_mask = XCreatePixmap (XtDisplay (w), XtWindow (w), @@ -314,7 +314,7 @@ static void Resize (Widget widget) 0, 360 * 64); } - XShapeCombineMask (XtDisplay (w), XtWindow (w), ShapeClip, + XShapeCombineMask (XtDisplay (w), XtWindow (w), ShapeClip, 0, 0, shape_mask, ShapeSet); } else @@ -333,7 +333,7 @@ static void Resize (Widget widget) XConfigureWindow (XtDisplay (w), XtWindow (w), CWWidth|CWHeight|CWBorderWidth, &xwc); - + SetTransform (&w->clock.t, 0, xwc.width, xwc.height, 0, @@ -421,7 +421,7 @@ static void new_time (XtPointer client_data, XtIntervalId *id) ClockWidget w = (ClockWidget)client_data; Time_t now; struct tm *tm; - + if (!w->clock.transparent) if (w->clock.polys_valid) { paint_hands (w, XtWindow (w), w->clock.eraseGC, w->clock.eraseGC); @@ -440,7 +440,7 @@ static void new_time (XtPointer client_data, XtIntervalId *id) * take a while and we'd like the clock to keep up * with time changes. */ - w->clock.interval_id = + w->clock.interval_id = XtAppAddTimeOut (XtWidgetToApplicationContext((Widget) w), (60 - tm->tm_sec) * 1000, new_time, client_data); compute_hands (w); @@ -525,7 +525,7 @@ compute_hand (ClockWidget w, double a, double l, double width, c = cos(a); s = sin(a); - poly[0].x = c * l; + poly[0].x = c * l; poly[0].y = s * l; poly[1].x = (l - width) * c - s * width; poly[1].y = (l - width) * s + c * width; |