mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-02-02 08:21:00 +00:00
Add a default zero-arg constructor for Gtk.Viewport.
svn path=/trunk/gtk-sharp/; revision=12869
This commit is contained in:
parent
fa8aea036c
commit
b68542269f
|
@ -1,3 +1,8 @@
|
|||
2003-03-27 Lee Mallabone <gnome@fonicmonkey.net>
|
||||
|
||||
* api/gtk-api.xml, sources/Gtk.metadata, gtk/Viewport.custom:
|
||||
Add default constructor to Viewport.
|
||||
|
||||
2003-03-25 Lee Mallabone <gnome@fonicmonkey.net>
|
||||
|
||||
* api/gtk-api.xml: Allow parameters in TreeView.ScrollToCell to be null.
|
||||
|
|
|
@ -8711,7 +8711,7 @@
|
|||
</method>
|
||||
<constructor cname="gtk_vbutton_box_new"/>
|
||||
</object>
|
||||
<object name="Viewport" cname="GtkViewport" parent="GtkBin">
|
||||
<object name="Viewport" cname="GtkViewport" parent="GtkBin" disabledefaultconstructor="1">
|
||||
<field cname="shadow_type" type="GtkShadowType"/>
|
||||
<field cname="view_window" type="GdkWindow*"/>
|
||||
<field cname="bin_window" type="GdkWindow*"/>
|
||||
|
|
6
gtk/Viewport.custom
Normal file
6
gtk/Viewport.custom
Normal file
|
@ -0,0 +1,6 @@
|
|||
// Customizations for Viewport.
|
||||
// Author: Lee Mallabone <gnome@fonicmonkey.net>
|
||||
|
||||
// Make a default constructor that wraps typical usage.
|
||||
public Viewport (): this (null, null) {
|
||||
}
|
|
@ -1578,14 +1578,7 @@
|
|||
<!-- disable default constructor -->
|
||||
<rule>
|
||||
<class name="GtkScrolledWindow"/>
|
||||
<data>
|
||||
<attribute target="class">
|
||||
<name>disabledefaultconstructor</name>
|
||||
<value>1</value>
|
||||
</attribute>
|
||||
</data>
|
||||
</rule>
|
||||
<rule>
|
||||
<class name="GtkViewport"/>
|
||||
<class name="GtkFrame"/>
|
||||
<data>
|
||||
<attribute target="class">
|
||||
|
|
Loading…
Reference in a new issue