mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 21:25:28 +00:00
7a10147c5c
* gtk/TargetEntry.custom: New. * glue/dragcontext.c: New. * glib/Object.cs: New public property TypeName in class Object. * gdk/DragContext.custom: New. svn path=/trunk/gtk-sharp/; revision=20754
16 lines
352 B
Plaintext
16 lines
352 B
Plaintext
// Gtk.Window.custom - Gtk Window class customizations
|
|
//
|
|
// Author: Ettore Perazzoli <ettore@ximian.com>
|
|
//
|
|
// (c) 2003 Novell, Inc.
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
|
|
public TargetEntry (string target, Gtk.TargetFlags flags, uint info)
|
|
{
|
|
this.target = target;
|
|
this.flags = flags;
|
|
this.info = info;
|
|
}
|