5b63473a1c
It's not the same type as GLib.Object but a subclass thereof.
11 lines
235 B
C#
11 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);
|
|
}
|
|
}
|
|
}
|