mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-13 14:00:09 +00:00
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
This commit is contained in:
parent
5f539194f8
commit
3865f68226
@ -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:
|
||||
|
@ -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))
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user