mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 19:35:42 +00:00
e7bf3a279f
* generator/ClassBase.cs : remove default ctor generation and hasDefaultConstructor field. * generator/Ctor.cs : chain to base (IntPtr.Zero). * generator/StructBase.cs : remove hasDefaultConstructor usage. * glib/Object.cs : remove Object () ctor. Add Ben's GetGType method, although nothing uses it yet. Still working on integrating the remainder of Ben's patch. * gtk/Gtk.metadata : remove all the disabledefaultctor rules. * */*.custom : add base (IntPtr.Zero) or this (...) chaining for all ctors. svn path=/trunk/gtk-sharp/; revision=25184
15 lines
316 B
Plaintext
15 lines
316 B
Plaintext
//
|
|
// PrintJob.custom - customizations
|
|
//
|
|
// Author: Martin Willemoes Hansen <mwh@sysrq.dk>
|
|
//
|
|
// Copyright (C) 2003 Martin Willemoes Hansen
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
//
|
|
|
|
public PrintJob() : base (IntPtr.Zero)
|
|
{
|
|
Raw = gnome_print_job_new (PrintConfig.Default().Handle);
|
|
}
|