mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-05-02 14:46:27 +00:00
2004-11-30 Mike Kestner <mkestner@novell.com>
* glib/glue/value.c : add back some code lost in the merge of 2-4-branch. [Fixes #70045] svn path=/trunk/gtk-sharp/; revision=36845
This commit is contained in:
parent
12b8e718e1
commit
70d245e7fe
|
@ -1,3 +1,8 @@
|
||||||
|
2004-11-30 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
|
* glib/glue/value.c : add back some code lost in the merge of
|
||||||
|
2-4-branch. [Fixes #70045]
|
||||||
|
|
||||||
2004-11-26 Jeroen Zwartepoorte <jeroen@xs4all.nl>
|
2004-11-26 Jeroen Zwartepoorte <jeroen@xs4all.nl>
|
||||||
|
|
||||||
* gtk/ActionEntry.cs:
|
* gtk/ActionEntry.cs:
|
||||||
|
|
|
@ -26,6 +26,8 @@ void gtksharp_value_create_from_property (GValue *value, GObject *obj, const gch
|
||||||
void gtksharp_value_create_from_type_and_property (GValue *value, GType gtype, const gchar* name);
|
void gtksharp_value_create_from_type_and_property (GValue *value, GType gtype, const gchar* name);
|
||||||
void gtksharp_value_create_from_type_name (GValue *value, const gchar *type_name);
|
void gtksharp_value_create_from_type_name (GValue *value, const gchar *type_name);
|
||||||
GType gtksharp_value_get_value_type (GValue *value);
|
GType gtksharp_value_get_value_type (GValue *value);
|
||||||
|
gpointer glibsharp_value_get_boxed (GValue *value);
|
||||||
|
void glibsharp_value_set_boxed (GValue *value, gpointer boxed);
|
||||||
gboolean glibsharp_value_holds_flags (GValue *value);
|
gboolean glibsharp_value_holds_flags (GValue *value);
|
||||||
/* */
|
/* */
|
||||||
|
|
||||||
|
@ -57,6 +59,18 @@ gtksharp_value_get_value_type (GValue *value)
|
||||||
return G_VALUE_TYPE (value);
|
return G_VALUE_TYPE (value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gpointer
|
||||||
|
glibsharp_value_get_boxed (GValue *value)
|
||||||
|
{
|
||||||
|
return g_value_get_boxed (value);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
glibsharp_value_set_boxed (GValue *value, gpointer boxed)
|
||||||
|
{
|
||||||
|
g_value_set_boxed (value, boxed);
|
||||||
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
glibsharp_value_holds_flags (GValue *value)
|
glibsharp_value_holds_flags (GValue *value)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue