summaryrefslogtreecommitdiff
path: root/src/fl_read_image_win32.cxx
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2011-04-17 08:48:40 +0000
committerManolo Gouy <Manolo>2011-04-17 08:48:40 +0000
commitddc4b21b5502a7331e09c540a3e3d9d5774775a3 (patch)
tree00ff18960b768bd974bd639d198187a26e46e12c /src/fl_read_image_win32.cxx
parent8212e4bfe793db92b5fea731945bf9b7bc1acbcd (diff)
Fixed Fl_Paged_Device::print_window() that did not work under Windows seven.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8595 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_read_image_win32.cxx')
-rw-r--r--src/fl_read_image_win32.cxx23
1 files changed, 9 insertions, 14 deletions
diff --git a/src/fl_read_image_win32.cxx b/src/fl_read_image_win32.cxx
index 875b945a9..eb881d4a8 100644
--- a/src/fl_read_image_win32.cxx
+++ b/src/fl_read_image_win32.cxx
@@ -34,13 +34,10 @@ fl_read_image(uchar *p, // I - Pixel buffer or NULL to allocate
int X, // I - Left position
int Y, // I - Top position
int w, // I - Width of area to read
- // negative w means negative X or Y are allowed
int h, // I - Height of area to read
int alpha) { // I - Alpha value for image (0 for none)
int d; // Depth of image
- int allow_outside = w < 0; // negative w allows negative X or Y, that is, window border
- if (w < 0) w = - w;
// Allocate the image data array as needed...
d = alpha ? 4 : 3;
@@ -61,17 +58,15 @@ fl_read_image(uchar *p, // I - Pixel buffer or NULL to allocate
int shift_x = 0; // X target shift if X modified
int shift_y = 0; // Y target shift if X modified
- if (!allow_outside) {
- if (X < 0) {
- shift_x = -X;
- w += X;
- X = 0;
- }
- if (Y < 0) {
- shift_y = -Y;
- h += Y;
- Y = 0;
- }
+ if (X < 0) {
+ shift_x = -X;
+ w += X;
+ X = 0;
+ }
+ if (Y < 0) {
+ shift_y = -Y;
+ h += Y;
+ Y = 0;
}
if (h < 1 || w < 1) return p; // nothing to copy