Removed warning about unused variable.

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5714 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher
2007-02-25 00:00:49 +00:00
parent 3be4efbd8a
commit d18f2b26b5
+1 -1
View File
@@ -102,7 +102,7 @@ void fl_scroll(int X, int Y, int W, int H, int dx, int dy,
if (fl_GetRandomRgn) {
// get the DC region minus all overlapping windows
HRGN sys_rgn = CreateRectRgn(0, 0, 0, 0);
int nn = fl_GetRandomRgn(fl_gc, sys_rgn, 4);
fl_GetRandomRgn(fl_gc, sys_rgn, 4);
// now get the source scrolling rectangle
HRGN src_rgn = CreateRectRgn(src_x, src_y, src_x+src_w, src_y+src_h);
POINT offset = { 0, 0 };