diff options
author | Johan Dahlin <jdahlin@async.com.br> | 2007-07-09 17:24:24 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2007-07-09 17:24:24 +0000 |
commit | 3865f682261e1d479ae436c6e09e92155b9dc98f (patch) | |
tree | 5df71b5e72ea7016255cd5f5450f2fa8c90aba45 | |
parent | 5f539194f82948e7eb0dd8dde0853dfc7cff95a7 (diff) | |
download | gtk+-3865f682261e1d479ae436c6e09e92155b9dc98f.tar.gz |
Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public.
2007-07-09 Johan Dahlin <jdahlin@async.com.br>
* gtk/gtktooltip.c:
* gtk/gtktooltip.h: Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public.
svn path=/trunk/; revision=18410
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gtk/gtktooltip.c | 2 | ||||
-rw-r--r-- | gtk/gtktooltip.h | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2007-07-09 Johan Dahlin <jdahlin@async.com.br> + + * gtk/gtktooltip.c: + * gtk/gtktooltip.h: Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public. + 2007-07-09 Johan Dahlin,,, <jdahlin@lozenge> * demos/gtk-demo/demo.ui: diff --git a/gtk/gtktooltip.c b/gtk/gtktooltip.c index e32b15024f..e77d60ced8 100644 --- a/gtk/gtktooltip.c +++ b/gtk/gtktooltip.c @@ -34,9 +34,7 @@ #include <string.h> -#define GTK_TOOLTIP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOLTIP, GtkTooltip)) #define GTK_TOOLTIP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TOOLTIP, GtkTooltipClass)) -#define GTK_IS_TOOLTIP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOLTIP)) #define GTK_IS_TOOLTIP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TOOLTIP)) #define GTK_TOOLTIP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TOOLTIP, GtkTooltipClass)) diff --git a/gtk/gtktooltip.h b/gtk/gtktooltip.h index 466074fb58..eb9ff41f56 100644 --- a/gtk/gtktooltip.h +++ b/gtk/gtktooltip.h @@ -28,6 +28,8 @@ G_BEGIN_DECLS #define GTK_TYPE_TOOLTIP (gtk_tooltip_get_type ()) +#define GTK_TOOLTIP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOLTIP, GtkTooltip)) +#define GTK_IS_TOOLTIP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOLTIP)) GType gtk_tooltip_get_type (void); |