From cdad633e8719e928674e5e0a3bc660361c355ec6 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Mon, 22 Nov 2010 13:11:48 +0000 Subject: [PATCH] Removed redundant case in fix for STR #2304. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7883 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/fl_rect.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fl_rect.cxx b/src/fl_rect.cxx index 4a4a46031..493716c6a 100644 --- a/src/fl_rect.cxx +++ b/src/fl_rect.cxx @@ -525,7 +525,7 @@ int Fl_Graphics_Driver::not_clipped(int x, int y, int w, int h) { // now all coordinates to test are in the range [0,32767] - return r ? XRectInRegion(r, tx, ty, tw, th) : 1; + return XRectInRegion(r, tx, ty, tw, th); #elif defined(WIN32) if (!r) return 1; RECT rect;