Changeset 426
- Timestamp:
- 10/04/07 17:04:22 (1 year ago)
- Files:
-
- gtkimageview/src/cursors.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gtkimageview/src/cursors.c
r136 r426 20 20 #include "cursors.h" 21 21 22 static c har void_data[] = { 0x00 };23 static c har void_mask[] = { 0x00 };22 static const char void_data[] = { 0x00 }; 23 static const char void_mask[] = { 0x00 }; 24 24 25 static c har hand_open_data[] =25 static const char hand_open_data[] = 26 26 { 27 27 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, … … 31 31 0x00, 0x3f, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 32 32 }; 33 static c har hand_open_mask[] =33 static const char hand_open_mask[] = 34 34 { 35 35 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x60, 0x3f, 0x00, … … 40 40 }; 41 41 42 static c har hand_closed_data[] =42 static const char hand_closed_data[] = 43 43 { 44 44 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, … … 48 48 0x00, 0x3f, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 49 49 }; 50 static c har hand_closed_mask[] =50 static const char hand_closed_mask[] = 51 51 { 52 52 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, … … 60 60 static struct 61 61 { 62 c har *data;63 c har *mask;62 const char *data; 63 const char *mask; 64 64 int width; 65 65 int height;
