mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 05:25:34 +00:00
554450a33a
* generator/CallbackGen.cs : suppress len params from string/len pairs. * generator/Parameters.cs : begin the refactoring to use Parameter class. Suppress len params from string/len pairs. */*.custom : remove all overrides of string/len pairs */*.cs : ditto. Thanks to Alp Toker for the foundation patch that this change was built upon. svn path=/trunk/gtk-sharp/; revision=11913
15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
//
|
|
// Gtk.Entry.custom - Allow customization of values in the GtkEntry
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
//
|
|
|
|
public int InsertText (string new_text)
|
|
{
|
|
int position = 0;
|
|
|
|
InsertText (new_text, ref position);
|
|
|
|
return position;
|
|
}
|