Ryujinx-GtkSharp/Source/Libs/GtkSourceSharp/Buffer.cs
Sebastian Dröge 5b63473a1c Use correct GType for GLib.InitiallyUnowned
It's not the same type as GLib.Object but a subclass thereof.
2021-01-24 19:55:17 +01:00

12 lines
235 B
C#

namespace GtkSource
{
using System;
public partial class Buffer : Gtk.TextBuffer
{
public Buffer() : base(IntPtr.Zero)
{
Raw = gtk_source_buffer_new(IntPtr.Zero);
}
}
}