зеркало из
1
0
Форкнуть 0

* dia/CanvasBox.custom: Redundant code in ctor removed.

* dia/CanvasImage.custom: Ditto
        * dia/CanvasLine.custom: Ditto
        * dia/CanvasText.custom: Ditto

svn path=/trunk/diacanvas-sharp/; revision=23105
This commit is contained in:
Martin Willemoes Hansen 2004-02-15 10:53:42 +00:00
Родитель ff47ce4029
Коммит 28a48efc2f
5 изменённых файлов: 12 добавлений и 5 удалений

Просмотреть файл

@ -1,3 +1,10 @@
2004-02-15 Martin Willemoes Hansen <mwh@sysrq.dk>
* dia/CanvasBox.custom: Redundant code in ctor removed.
* dia/CanvasImage.custom: Ditto
* dia/CanvasLine.custom: Ditto
* dia/CanvasText.custom: Ditto
2004-02-08 Martin Willemoes Hansen <mwh@sysrq.dk>
* dia/DiaCanvas.cs: Added, this is the module class for for

Просмотреть файл

@ -6,4 +6,4 @@
//
// This code is inserted after the automatically generated code.
public CanvasBox() : base (CanvasBox.GType) {}
public CanvasBox() : base (GType) {}

Просмотреть файл

@ -6,12 +6,12 @@
//
// This code is inserted after the automatically generated code.
public CanvasImage (Gdk.Pixbuf pixbuf) : base (CanvasImage.GType)
public CanvasImage (Gdk.Pixbuf pixbuf) : base (GType)
{
Image = pixbuf;
Width = pixbuf.Width;
Height = pixbuf.Height;
}
public CanvasImage() : base (CanvasImage.GType) {}
public CanvasImage() : base (GType) {}

Просмотреть файл

@ -6,7 +6,7 @@
//
// This code is inserted after the automatically generated code.
public CanvasLine() : base (CanvasLine.GType) {}
public CanvasLine() : base (GType) {}
[DllImport("diacanvassharpglue")]
extern static void diasharp_canvas_line_set_dash_style_property (IntPtr line,

Просмотреть файл

@ -6,5 +6,5 @@
//
// This code is inserted after the automatically generated code.
public CanvasText() : base (CanvasText.GType) {}
public CanvasText() : base (GType) {}