diff options
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/shortcut-bar/ChangeLog | 4 | ||||
-rw-r--r-- | widgets/shortcut-bar/e-shortcut-bar.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/widgets/shortcut-bar/ChangeLog b/widgets/shortcut-bar/ChangeLog index c4cbca5113..7258078925 100644 --- a/widgets/shortcut-bar/ChangeLog +++ b/widgets/shortcut-bar/ChangeLog @@ -1,5 +1,9 @@ 2000-05-04 Ettore Perazzoli <ettore@helixcode.com> + * e-shortcut-bar.h (E_TYPE_SHORTCUT_BAR): New #define. + +2000-05-04 Ettore Perazzoli <ettore@helixcode.com> + * e-icon-bar-bg-item.c (e_icon_bar_bg_item_draw): Initialize `shadow' to placate compiler. diff --git a/widgets/shortcut-bar/e-shortcut-bar.h b/widgets/shortcut-bar/e-shortcut-bar.h index ef40c89367..2482399428 100644 --- a/widgets/shortcut-bar/e-shortcut-bar.h +++ b/widgets/shortcut-bar/e-shortcut-bar.h @@ -57,6 +57,8 @@ struct _EShortcutBarGroup }; +#define E_TYPE_SHORTCUT_BAR (e_shortcut_bar_get_type ()) +#define SHORTCUT_BAR(obj) GTK_CHECK_CAST (obj, e_shortcut_bar_get_type (), EShortcutBar) #define E_SHORTCUT_BAR(obj) GTK_CHECK_CAST (obj, e_shortcut_bar_get_type (), EShortcutBar) #define E_SHORTCUT_BAR_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, e_shortcut_bar_get_type (), EShortcutBarClass) #define E_IS_SHORTCUT_BAR(obj) GTK_CHECK_TYPE (obj, e_shortcut_bar_get_type ()) |