mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-03-06 08:59:41 +00:00
14 lines
292 B
C#
14 lines
292 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|