git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45942
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
static void gtk_tree_entry_string_transform_func(const GValue *src_value,
GValue *dest_value)
{
static void gtk_tree_entry_string_transform_func(const GValue *src_value,
GValue *dest_value)
{
/* Make sure src is a treeentry and dest can hold a string */
g_assert(GTK_IS_TREE_ENTRY(src_value->data[0].v_pointer));
g_assert(G_VALUE_HOLDS(dest_value, G_TYPE_STRING));
/* TODO: Use strdup here or just pass it? */
/* Make sure src is a treeentry and dest can hold a string */
g_assert(GTK_IS_TREE_ENTRY(src_value->data[0].v_pointer));
g_assert(G_VALUE_HOLDS(dest_value, G_TYPE_STRING));
/* TODO: Use strdup here or just pass it? */
- GtkTreeEntry* entry = GTK_TREE_ENTRY(src_value->data[0].v_pointer);
+ entry = GTK_TREE_ENTRY(src_value->data[0].v_pointer);
g_value_set_string(dest_value, entry->label);
}
static void gtk_tree_entry_dispose(GObject* obj)
{
g_value_set_string(dest_value, entry->label);
}
static void gtk_tree_entry_dispose(GObject* obj)
{
g_assert(GTK_IS_TREE_ENTRY(obj));
g_assert(GTK_IS_TREE_ENTRY(obj));
- GtkTreeEntry* entry = GTK_TREE_ENTRY(obj);
+ entry = GTK_TREE_ENTRY(obj);
/* free label if it exists */
if(entry->label)
/* free label if it exists */
if(entry->label)