f750d78d6a
* generator/ObjectGen.cs : generate protected GType ctors * generator/SymbolTable.cs : map GType to uint * glib/Object.cs : add GType ctor. add RegisterGType. * glue/type.c (gtksharp_register_type): new GType registrar * */*.custom : make GType params uints * sample/Subclass.cs : a simple type registration example svn path=/trunk/gtk-sharp/; revision=9870
14 lines
323 B
Text
14 lines
323 B
Text
//
|
|
// Gnome.CanvasShape.custom - Gnome CanvasShape class customizations
|
|
//
|
|
// Author: Rachel Hestilow <hestilow@ximian.com>
|
|
//
|
|
// Copyright (C) 2002 Rachel Hestilow
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
//
|
|
|
|
protected CanvasShape (Gnome.CanvasGroup group, uint type) : base (group, type)
|
|
{
|
|
}
|
|
|