mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 04:10:13 +00:00
gtk/gtkobject.c s/GtkType/GType/ and
2008-09-23 Michael Natterer <mitch@imendio.com> * gtk/gtkobject.c * gtk/gtksignal.[ch]: s/GtkType/GType/ and s/GtkSignalMarshaller/GSignalCMarshaller/. svn path=/trunk/; revision=21498
This commit is contained in:
parent
69be45d1d4
commit
781850fc64
@ -1,3 +1,9 @@
|
|||||||
|
2008-09-23 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
|
* gtk/gtkobject.c
|
||||||
|
* gtk/gtksignal.[ch]: s/GtkType/GType/ and
|
||||||
|
s/GtkSignalMarshaller/GSignalCMarshaller/.
|
||||||
|
|
||||||
2008-09-23 Michael Natterer <mitch@imendio.com>
|
2008-09-23 Michael Natterer <mitch@imendio.com>
|
||||||
|
|
||||||
* gdk/x11/gdkevents-x11.c (gdk_event_translate): remove unused
|
* gdk/x11/gdkevents-x11.c (gdk_event_translate): remove unused
|
||||||
|
@ -216,7 +216,7 @@ gtk_arg_proxy_get_property (GObject *object,
|
|||||||
|
|
||||||
void
|
void
|
||||||
gtk_object_add_arg_type (const gchar *arg_name,
|
gtk_object_add_arg_type (const gchar *arg_name,
|
||||||
GtkType arg_type,
|
GType arg_type,
|
||||||
guint arg_flags,
|
guint arg_flags,
|
||||||
guint arg_id)
|
guint arg_id)
|
||||||
{
|
{
|
||||||
@ -593,7 +593,7 @@ gtk_object_notify_weaks (GtkObject *object)
|
|||||||
}
|
}
|
||||||
|
|
||||||
GtkObject*
|
GtkObject*
|
||||||
gtk_object_new (GtkType object_type,
|
gtk_object_new (GType object_type,
|
||||||
const gchar *first_property_name,
|
const gchar *first_property_name,
|
||||||
...)
|
...)
|
||||||
{
|
{
|
||||||
|
@ -34,12 +34,12 @@
|
|||||||
guint
|
guint
|
||||||
gtk_signal_newv (const gchar *name,
|
gtk_signal_newv (const gchar *name,
|
||||||
GtkSignalRunType signal_flags,
|
GtkSignalRunType signal_flags,
|
||||||
GtkType object_type,
|
GType object_type,
|
||||||
guint function_offset,
|
guint function_offset,
|
||||||
GtkSignalMarshaller marshaller,
|
GSignalCMarshaller marshaller,
|
||||||
GtkType return_val,
|
GType return_val,
|
||||||
guint n_params,
|
guint n_params,
|
||||||
GtkType *params)
|
GType *params)
|
||||||
{
|
{
|
||||||
GClosure *closure;
|
GClosure *closure;
|
||||||
|
|
||||||
@ -54,14 +54,14 @@ gtk_signal_newv (const gchar *name,
|
|||||||
guint
|
guint
|
||||||
gtk_signal_new (const gchar *name,
|
gtk_signal_new (const gchar *name,
|
||||||
GtkSignalRunType signal_flags,
|
GtkSignalRunType signal_flags,
|
||||||
GtkType object_type,
|
GType object_type,
|
||||||
guint function_offset,
|
guint function_offset,
|
||||||
GtkSignalMarshaller marshaller,
|
GSignalCMarshaller marshaller,
|
||||||
GtkType return_val,
|
GType return_val,
|
||||||
guint n_params,
|
guint n_params,
|
||||||
...)
|
...)
|
||||||
{
|
{
|
||||||
GtkType *params;
|
GType *params;
|
||||||
guint signal_id;
|
guint signal_id;
|
||||||
|
|
||||||
if (n_params)
|
if (n_params)
|
||||||
@ -69,10 +69,10 @@ gtk_signal_new (const gchar *name,
|
|||||||
va_list args;
|
va_list args;
|
||||||
guint i;
|
guint i;
|
||||||
|
|
||||||
params = g_new (GtkType, n_params);
|
params = g_new (GType, n_params);
|
||||||
va_start (args, n_params);
|
va_start (args, n_params);
|
||||||
for (i = 0; i < n_params; i++)
|
for (i = 0; i < n_params; i++)
|
||||||
params[i] = va_arg (args, GtkType);
|
params[i] = va_arg (args, GType);
|
||||||
va_end (args);
|
va_end (args);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -93,7 +93,7 @@ guint gtk_signal_newv (const gchar *name,
|
|||||||
GtkSignalRunType signal_flags,
|
GtkSignalRunType signal_flags,
|
||||||
GType object_type,
|
GType object_type,
|
||||||
guint function_offset,
|
guint function_offset,
|
||||||
GtkSignalMarshaller marshaller,
|
GSignalCMarshaller marshaller,
|
||||||
GType return_val,
|
GType return_val,
|
||||||
guint n_args,
|
guint n_args,
|
||||||
GType *args);
|
GType *args);
|
||||||
@ -101,7 +101,7 @@ guint gtk_signal_new (const gchar *name,
|
|||||||
GtkSignalRunType signal_flags,
|
GtkSignalRunType signal_flags,
|
||||||
GType object_type,
|
GType object_type,
|
||||||
guint function_offset,
|
guint function_offset,
|
||||||
GtkSignalMarshaller marshaller,
|
GSignalCMarshaller marshaller,
|
||||||
GType return_val,
|
GType return_val,
|
||||||
guint n_args,
|
guint n_args,
|
||||||
...);
|
...);
|
||||||
|
Loading…
Reference in New Issue
Block a user