mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 17:25:37 +00:00
18 lines
404 B
Plaintext
18 lines
404 B
Plaintext
|
// Gtk.Object.custom - Gtk Window class customizations
|
||
|
//
|
||
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
||
|
//
|
||
|
// (c) 2002 Mike Kestner
|
||
|
//
|
||
|
// This code is inserted after the automatically generated code.
|
||
|
|
||
|
|
||
|
[DllImport("gtksharpglue")]
|
||
|
static extern void gtksharp_object_unref_if_floating (IntPtr raw);
|
||
|
|
||
|
protected override void DisposeNative ()
|
||
|
{
|
||
|
gtksharp_object_unref_if_floating (Handle);
|
||
|
}
|
||
|
|