diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-02-08 15:18:46 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-02-08 15:19:47 +0100 |
commit | d22daad5ddf9adbbfab473101ef225b409f6c21f (patch) | |
tree | 010f84429b933b132f80019d070301104a967650 /vcl/inc/unx | |
parent | 865d29b276ff62cfb1bb9ef18ec0d81ad9be7a0a (diff) |
Fix XBM-format cursor data
Change-Id: I7e8dc166a33ad1bf98029a7ed323a7ddcbe74bfb
Diffstat (limited to 'vcl/inc/unx')
-rw-r--r-- | vcl/inc/unx/x11_cursors/null_curs.h | 2 | ||||
-rw-r--r-- | vcl/inc/unx/x11_cursors/null_mask.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/inc/unx/x11_cursors/null_curs.h b/vcl/inc/unx/x11_cursors/null_curs.h index a23aa04515b2..d74b462cba9b 100644 --- a/vcl/inc/unx/x11_cursors/null_curs.h +++ b/vcl/inc/unx/x11_cursors/null_curs.h @@ -20,6 +20,6 @@ #define nullcurs_height 4 #define nullcurs_x_hot 2 #define nullcurs_y_hot 2 -static unsigned char nullcurs_bits[] = { 0x00, 0x00 }; +static unsigned char nullcurs_bits[] = { 0x00, 0x00, 0x00, 0x00 }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/vcl/inc/unx/x11_cursors/null_mask.h b/vcl/inc/unx/x11_cursors/null_mask.h index 16f0c723eed1..bc23e9c9729b 100644 --- a/vcl/inc/unx/x11_cursors/null_mask.h +++ b/vcl/inc/unx/x11_cursors/null_mask.h @@ -18,6 +18,6 @@ */ #define nullmask_width 4 #define nullmask_height 4 -static unsigned char nullmask_bits[] = { 0x00, 0x00 }; +static unsigned char nullmask_bits[] = { 0x00, 0x00, 0x00, 0x00 }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |