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
14 lines
264 B
Text
14 lines
264 B
Text
//
|
|
// 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;
|
|
}
|