diff options
author | Jeremy Henty <onepoint@starurchin.org> | 2009-05-07 16:35:03 -0400 |
---|---|---|
committer | Jeremy Henty <onepoint@starurchin.org> | 2009-05-07 16:35:03 -0400 |
commit | 7034881b87b53b087bae78aef8380e5258f68a24 (patch) | |
tree | e8798ededb6f3791fe8c1e38f60ed0670fb8ea20 /src/image.cc | |
parent | a975d5033ed5905cd05b08bf752851325d34a0a7 (diff) |
Cleanup in a_Image_new() signature
Diffstat (limited to 'src/image.cc')
-rw-r--r-- | src/image.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/image.cc b/src/image.cc index 8ecf2a72..3417ed9d 100644 --- a/src/image.cc +++ b/src/image.cc @@ -33,10 +33,7 @@ using namespace dw::core; /* * Create and initialize a new image structure. */ -DilloImage *a_Image_new(int width, - int height, - const char *alt_text, - int32_t bg_color) +DilloImage *a_Image_new(const char *alt_text, int32_t bg_color) { DilloImage *Image; |