| 58 */ |
58 */ |
| 59 #define PIDGIN_HIG_CAT_SPACE 18 |
59 #define PIDGIN_HIG_CAT_SPACE 18 |
| 60 #define PIDGIN_HIG_BORDER 12 |
60 #define PIDGIN_HIG_BORDER 12 |
| 61 #define PIDGIN_HIG_BOX_SPACE 6 |
61 #define PIDGIN_HIG_BOX_SPACE 6 |
| 62 |
62 |
| 63 #if !GTK_CHECK_VERSION(2,16,0) || !defined(PIDGIN_DISABLE_DEPRECATED) |
|
| 64 /* |
|
| 65 * Older versions of GNOME defaulted to using an asterisk as the invisible |
|
| 66 * character. But this is ugly and we want to use something nicer. |
|
| 67 * |
|
| 68 * The default invisible character was changed in GNOME revision 21446 |
|
| 69 * (GTK+ 2.16) from an asterisk to the first available character out of |
|
| 70 * 0x25cf, 0x2022, 0x2731, 0x273a. See GNOME bugs 83935 and 307304 for |
|
| 71 * discussion leading up to the change. |
|
| 72 * |
|
| 73 * Here's the change: |
|
| 74 * http://svn.gnome.org/viewvc/gtk%2B?view=revision&revision=21446 |
|
| 75 * |
|
| 76 */ |
|
| 77 #define PIDGIN_INVISIBLE_CHAR (gunichar)0x25cf |
|
| 78 #endif /* Less than GTK+ 2.16 */ |
|
| 79 |
|
| 80 #endif /* _PIDGIN_H_ */ |
63 #endif /* _PIDGIN_H_ */ |
| 81 |
64 |