diff --git a/ChangeLog b/ChangeLog index 6409ee0c7..5e60adbaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-11-18 Moritz Balz + + * gdk/Window.custom : remove Visible and Viewable since the Is* + methods are now gen'd as properties. + 2003-11-18 Mike Kestner * pango/Pango.metadata : mark ref params on LayoutLine.GetExtents diff --git a/gdk/Window.custom b/gdk/Window.custom index 09bb46f1e..f39eb3dea 100644 --- a/gdk/Window.custom +++ b/gdk/Window.custom @@ -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;