static void
attachment_icon_view_drag_dest_unset (EAttachmentView *view)
{
	GtkIconView *icon_view;

	icon_view = GTK_ICON_VIEW (view);

	gtk_icon_view_unset_model_drag_dest (icon_view);
}
Example #2
0
JNIEXPORT void JNICALL
Java_org_gnome_gtk_GtkIconView_gtk_1icon_1view_1unset_1model_1drag_1dest
(
	JNIEnv* env,
	jclass cls,
	jlong _self
)
{
	GtkIconView* self;

	// convert parameter self
	self = (GtkIconView*) _self;

	// call function
	gtk_icon_view_unset_model_drag_dest(self);

	// cleanup parameter self
}
Example #3
0
static VALUE
iview_unset_model_drag_dest(VALUE self)
{
    gtk_icon_view_unset_model_drag_dest(_SELF(self));
    return self;
}