commit | 698ef15b19b53cf5edb5175783c6588f5b20939d | [log] [tgz] |
---|---|---|
author | Dmitry Timoshkov <dmitry@codeweavers.com> | Mon Jun 25 20:08:44 2001 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Jun 25 20:08:44 2001 +0000 |
tree | 4a01d9fe2d914fa0086d20552750e91f689c6160 | |
parent | f9037de2ae1d72a0c748ebc60b66e9b2d1d19025 [diff] [blame] |
Replace some 16-bit calls by their 32-bit equivalents.
diff --git a/objects/dc.c b/objects/dc.c index f5709f8..22f5084 100644 --- a/objects/dc.c +++ b/objects/dc.c
@@ -392,7 +392,7 @@ } else { - if (dc->hClipRgn) DeleteObject16( dc->hClipRgn ); + if (dc->hClipRgn) DeleteObject( dc->hClipRgn ); dc->hClipRgn = 0; } CLIPPING_UpdateGCRegion( dc );