From 4214989dff219d017a905d22533d39bce6c0a963 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Tue, 11 May 2004 14:05:43 +0000 Subject: [PATCH] 2004-05-10 Mike Kestner * gtk/SelectionData.custom : add a Set overload without length param. svn path=/trunk/gtk-sharp/; revision=27108 --- ChangeLog | 4 ++++ gtk/SelectionData.custom | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8ecd36b7b..e19787986 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-05-10 Mike Kestner + + * gtk/SelectionData.custom : add a Set overload without length param. + 2004-05-10 Mike Kestner * gtk/Gtk.metadata : mark some Dialog API params as ResponseType diff --git a/gtk/SelectionData.custom b/gtk/SelectionData.custom index d9c27e49e..114c3e4d4 100644 --- a/gtk/SelectionData.custom +++ b/gtk/SelectionData.custom @@ -45,3 +45,8 @@ return result; } } + + public void Set(Gdk.Atom type, int format, byte[] data) { + Set(type, format, data, data.Length); + } +