comparison src/gtkgaim.h @ 12086:08be85ee79c0

[gaim-migrate @ 14383] Fix compilation for older version of gtk committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 14 Nov 2005 14:28:46 +0000
parents bfbb1798535e
children b4bd3b41bf3b
comparison
equal deleted inserted replaced
12085:9b886b6e3002 12086:08be85ee79c0
54 #include "gtkexpander.h" 54 #include "gtkexpander.h"
55 #endif 55 #endif
56 /** @endcond */ 56 /** @endcond */
57 57
58 /* 58 /*
59 * We include the sources for GtkComboBox and GtkCellView because
60 * they don't exist in older version of Gtk+, and we use them
61 * in a few places.
62 */
63 #if !GTK_CHECK_VERSION(2,6,0)
64 # include "gtkcellview.h"
65 # include "gtkcellviewmenuitem.h"
66 # if !GTK_CHECK_VERSION(2,4,0)
67 # include "gtkcelllayout.h"
68 # include "gtkcombobox.h"
69 # endif /* Gtk 2.4 */
70 #endif /* Gtk 2.6 */
71
72 /*
59 * Spacings between components, as defined by the 73 * Spacings between components, as defined by the
60 * Gnome Human Interface Guidelines. 74 * Gnome Human Interface Guidelines.
61 */ 75 */
62 #define GAIM_HIG_CAT_SPACE 18 76 #define GAIM_HIG_CAT_SPACE 18
63 #define GAIM_HIG_BORDER 12 77 #define GAIM_HIG_BORDER 12