GtkSharp/Source/Libs/SourceView/GtkSourceBuffer.cs

14 lines
292 B
C#
Raw Normal View History

2020-07-02 05:09:23 +00:00
namespace GtkSharp.SourceView
{
using System;
public partial class GtkSourceBuffer : Gtk.TextBuffer
{
public GtkSourceBuffer() : base(IntPtr.Zero)
{
owned = true;
Raw = gtk_source_buffer_new(IntPtr.Zero);
}
}
}