mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-07-19 19:18:38 +00:00
* gtk/ScrolledWindow.custom: new file with ScrolledWindow custom default constructor * parser/Metadata.pm: addClassData subroutine to add <disabledefaultconstructor/> * parser/Gtk.metadata: disable default constructor for ScrolledWindow * generator/ObjectGen.cs: added hasDefaultConstructor flag, dont generate default protected empty constructor if hasDefaultConstructor is false, it will be provided by .custom file * generator/makefile (RUNTIME): use RUNTIME variable svn path=/trunk/gtk-sharp/; revision=5854
13 lines
410 B
Plaintext
13 lines
410 B
Plaintext
//
|
|
// Gtk.ScrolledWindow.custom - Gtk ScrolledWindow class customizations
|
|
//
|
|
// Author: Radek Doulik (rodo@ximian.com)
|
|
//
|
|
// Copyright (C) 2002 Ximian, Inc.
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
//
|
|
|
|
public ScrolledWindow () : this (new Adjustment (IntPtr.Zero), new Adjustment (IntPtr.Zero)) {
|
|
SetPolicy (PolicyType.Automatic, PolicyType.Automatic);
|
|
} |