summaryrefslogtreecommitdiff
path: root/otk/surface.cc
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-02-09 22:40:47 +0000
committerDana Jansens <danakj@orodu.net>2003-02-09 22:40:47 +0000
commit74cfb1b4c115cdb4e05aa823b09d2b5ea9d0d690 (patch)
tree0741de84d1a575abb757c7c3f5e5afc10853453c /otk/surface.cc
parent9e05db9518c528ac0d2d44311cde267d9886b36a (diff)
signed ints instead of unsigned ints again. less pain. pain bad.
Diffstat (limited to 'otk/surface.cc')
-rw-r--r--otk/surface.cc4
1 files changed, 2 insertions, 2 deletions
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();