diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-04 19:37:58 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-05-04 19:37:58 +0800 |
commit | a6459db91963f890ec6d62ef73273f51b373d632 (patch) | |
tree | f561d2388342ecb0f2ae69087c298d2db022d21b | |
parent | 55b79db1f4a1d26892fa6a57663dcf2b1715091e (diff) | |
download | gsoc2013-evolution-a6459db91963f890ec6d62ef73273f51b373d632.tar gsoc2013-evolution-a6459db91963f890ec6d62ef73273f51b373d632.tar.gz gsoc2013-evolution-a6459db91963f890ec6d62ef73273f51b373d632.tar.bz2 gsoc2013-evolution-a6459db91963f890ec6d62ef73273f51b373d632.tar.lz gsoc2013-evolution-a6459db91963f890ec6d62ef73273f51b373d632.tar.xz gsoc2013-evolution-a6459db91963f890ec6d62ef73273f51b373d632.tar.zst gsoc2013-evolution-a6459db91963f890ec6d62ef73273f51b373d632.zip |
Define `E_TYPE_SHORTCUT_BAR'.
svn path=/trunk/; revision=2795
-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 ()) |