diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2010-11-22 13:11:48 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2010-11-22 13:11:48 +0000 |
| commit | cdad633e8719e928674e5e0a3bc660361c355ec6 (patch) | |
| tree | d2673942c46f32a5fe2c57f80d68577dfbf2d36e /src/fl_rect.cxx | |
| parent | 7d84aea1fbaf57a0fa2da1ee9a838005562b9a37 (diff) | |
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
Diffstat (limited to 'src/fl_rect.cxx')
| -rw-r--r-- | src/fl_rect.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
