From 124855efe9f3d44625552854cf618a64613fe8c8 Mon Sep 17 00:00:00 2001 From: Neil Hodgson Date: Sat, 21 Jul 2012 18:58:28 +1000 Subject: Add extra argument to RGBAImage constructor. --- win32/PlatWin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win32') diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 723995407..2dfdfb1ee 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -2388,7 +2388,7 @@ void ListBoxX::RegisterImage(int type, const char *xpm_data) { } void ListBoxX::RegisterRGBAImage(int type, int width, int height, const unsigned char *pixelsImage) { - images.Add(type, new RGBAImage(width, height, pixelsImage)); + images.Add(type, new RGBAImage(width, height, 1.0, pixelsImage)); } void ListBoxX::ClearRegisteredImages() { -- cgit v1.2.3