From da2c698abc1701af40b256e32877f93a105832d5 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Tue, 18 Nov 2003 21:59:18 +0000 Subject: [PATCH] 2003-11-18 Moritz Balz * gdk/Window.custom : remove Visible and Viewable since the Is* methods are now gen'd as properties. svn path=/trunk/gtk-sharp/; revision=20202 --- ChangeLog | 5 +++++ gdk/Window.custom | 12 ------------ 2 files changed, 5 insertions(+), 12 deletions(-) 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;