2003-11-18 Moritz Balz <verteiler@mbalz.de>

* gdk/Window.custom : remove Visible and Viewable since the Is*
	methods are now gen'd as properties.

svn path=/trunk/gtk-sharp/; revision=20202
This commit is contained in:
Mike Kestner 2003-11-18 21:59:18 +00:00
parent 3ecf658ac2
commit da2c698abc
2 changed files with 5 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2003-11-18 Moritz Balz <verteiler@mbalz.de>
* gdk/Window.custom : remove Visible and Viewable since the Is*
methods are now gen'd as properties.
2003-11-18 Mike Kestner <mkestner@ximian.com>
* pango/Pango.metadata : mark ref params on LayoutLine.GetExtents

View File

@ -34,12 +34,6 @@
}
}
public bool Visible {
get {
return gdk_window_is_visible (Handle);
}
}
public void ClearArea(System.Drawing.Rectangle rect) {
gdk_window_clear_area (Handle, rect.X, rect.Y, rect.Width, rect.Height);
}
@ -49,12 +43,6 @@
gdk_window_invalidate_rect (Handle, ref grect, invalidate_children);
}
public bool Viewable {
get {
return gdk_window_is_viewable (Handle);
}
}
public System.Drawing.Point Position {
get {
int x, y;