forked from AuroraMiddleware/gtk
s/GtkType/GType/
2008-06-17 Michael Natterer <mitch@imendio.com> * gtk/gtkbindings.c (gtk_binding_entry_add_signal): * gtk/gtktoolbutton.c (gtk_tool_button_get_type): * examples/gtkdial/gtkdial.h (gtk_dial_get_type): s/GtkType/GType/ svn path=/trunk/; revision=20436
This commit is contained in:
parent
293ed565ee
commit
554e1eec70
@ -1,3 +1,10 @@
|
||||
2008-06-17 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gtk/gtkbindings.c (gtk_binding_entry_add_signal):
|
||||
* gtk/gtktoolbutton.c (gtk_tool_button_get_type):
|
||||
* examples/gtkdial/gtkdial.h (gtk_dial_get_type):
|
||||
s/GtkType/GType/
|
||||
|
||||
2008-06-17 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* gtk/gtknotebook.c: Need to do the GTK_DISABLE_DEPRECATED
|
||||
|
@ -74,7 +74,7 @@ struct _GtkDialClass
|
||||
|
||||
|
||||
GtkWidget* gtk_dial_new (GtkAdjustment *adjustment);
|
||||
GtkType gtk_dial_get_type (void);
|
||||
GType gtk_dial_get_type (void);
|
||||
GtkAdjustment* gtk_dial_get_adjustment (GtkDial *dial);
|
||||
void gtk_dial_set_update_policy (GtkDial *dial,
|
||||
GtkUpdateType policy);
|
||||
|
@ -911,7 +911,7 @@ gtk_binding_entry_add_signal (GtkBindingSet *binding_set,
|
||||
arg = g_slice_new0 (GtkBindingArg);
|
||||
slist = g_slist_prepend (slist, arg);
|
||||
|
||||
arg->arg_type = va_arg (args, GtkType);
|
||||
arg->arg_type = va_arg (args, GType);
|
||||
switch (G_TYPE_FUNDAMENTAL (arg->arg_type))
|
||||
{
|
||||
case G_TYPE_CHAR:
|
||||
|
@ -100,7 +100,7 @@ struct _GtkToolButtonPrivate
|
||||
GType
|
||||
gtk_tool_button_get_type (void)
|
||||
{
|
||||
static GtkType type = 0;
|
||||
static GType type = 0;
|
||||
|
||||
if (!type)
|
||||
type = g_type_register_static_simple (GTK_TYPE_TOOL_ITEM,
|
||||
|
Loading…
Reference in New Issue
Block a user