diff options
| author | Neil Hodgson <nyamatongwe@scintilla.org> | 2012-07-21 18:58:28 +1000 |
|---|---|---|
| committer | Neil Hodgson <nyamatongwe@scintilla.org> | 2012-07-21 18:58:28 +1000 |
| commit | 28a6b6543584a15ce128408ed523b88c8b588394 (patch) | |
| tree | 411899e4bb903ef778baa1cb4ddd53c307f20a92 /gtk/PlatGTK.cxx | |
| parent | 7dcbdef9d6ae95e7c9232418d12195582faaa54b (diff) | |
| download | scintilla-mirror-28a6b6543584a15ce128408ed523b88c8b588394.tar.gz | |
Add extra argument to RGBAImage constructor.
Diffstat (limited to 'gtk/PlatGTK.cxx')
| -rw-r--r-- | gtk/PlatGTK.cxx | 2 |
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() { |
