From 74cfb1b4c115cdb4e05aa823b09d2b5ea9d0d690 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 9 Feb 2003 22:40:47 +0000 Subject: signed ints instead of unsigned ints again. less pain. pain bad. --- otk/surface.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'otk/surface.cc') diff --git a/otk/surface.cc b/otk/surface.cc index aabbf85a..60e6824c 100644 --- a/otk/surface.cc +++ b/otk/surface.cc @@ -39,8 +39,8 @@ void Surface::setPixmap(const RenderColor &color) void Surface::setPixmap(XImage *image) { - assert((unsigned)image->width == _size.width()); - assert((unsigned)image->height == _size.height()); + assert(image->width == _size.width()); + assert(image->height == _size.height()); if (_pixmap == None) createObjects(); -- cgit v1.2.3