From b231696dcf3b6389fefdb41c7cdccb8979264902 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Mon, 22 Jun 2015 05:15:42 +0000 Subject: [PATCH] Indentation fix. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10772 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Pixmap.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Fl_Pixmap.cxx b/src/Fl_Pixmap.cxx index 160c88e85..a5b9fc5e4 100644 --- a/src/Fl_Pixmap.cxx +++ b/src/Fl_Pixmap.cxx @@ -217,11 +217,11 @@ void Fl_Xlib_Graphics_Driver::draw(Fl_Pixmap *pxm, int XP, int YP, int WP, int H XIntersectRegion(r, clip_region(), r); int X1, Y1, W1, H1; for (int i = 0; i < r->numRects; i++) { - X1 = r->rects[i].x1; - Y1 = r->rects[i].y1; - W1 = r->rects[i].x2 - r->rects[i].x1; - H1 = r->rects[i].y2 - r->rects[i].y1; - copy_offscreen(X1, Y1, W1, H1, pxm->id_, cx + (X1 - X), cy + (Y1 - Y)); + X1 = r->rects[i].x1; + Y1 = r->rects[i].y1; + W1 = r->rects[i].x2 - r->rects[i].x1; + H1 = r->rects[i].y2 - r->rects[i].y1; + copy_offscreen(X1, Y1, W1, H1, pxm->id_, cx + (X1 - X), cy + (Y1 - Y)); } XDestroyRegion(r); } else {