aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@scintilla.org>2012-07-21 18:58:28 +1000
committerNeil Hodgson <nyamatongwe@scintilla.org>2012-07-21 18:58:28 +1000
commit124855efe9f3d44625552854cf618a64613fe8c8 (patch)
treeafb2cbce87e7b40ffc2a3a93cf38ddceda546199 /gtk
parent543346f2f1de2761d801b029bb8c658533aa9950 (diff)
downloadscintilla-mirror-124855efe9f3d44625552854cf618a64613fe8c8.tar.gz
Add extra argument to RGBAImage constructor.
Diffstat (limited to 'gtk')
-rw-r--r--gtk/PlatGTK.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx
index d98c23530..91fafcc9b 100644
--- a/gtk/PlatGTK.cxx
+++ b/gtk/PlatGTK.cxx
@@ -1858,7 +1858,7 @@ void ListBoxX::RegisterImage(int type, const char *xpm_data) {
}
void ListBoxX::RegisterRGBAImage(int type, int width, int height, const unsigned char *pixelsImage) {
- RegisterRGBA(type, new RGBAImage(width, height, pixelsImage));
+ RegisterRGBA(type, new RGBAImage(width, height, 1.0, pixelsImage));
}
void ListBoxX::ClearRegisteredImages() {