gdk: Delete the commented out Window.ClearArea method
All the gdk_window_clear* methods were removed in GTK+ 3.0, so we can remove the custom code that was ifdef'd out in the initial port.
This commit is contained in:
parent
d2a93817a1
commit
15486fda75
1 changed files with 0 additions and 9 deletions
|
@ -97,15 +97,6 @@ namespace Gdk {
|
||||||
gdk_window_move_resize (Handle, rect.X, rect.Y, rect.Width, rect.Height);
|
gdk_window_move_resize (Handle, rect.X, rect.Y, rect.Width, rect.Height);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if FIXME30
|
|
||||||
public void ClearArea (Gdk.Rectangle rect, bool expose) {
|
|
||||||
if (expose)
|
|
||||||
gdk_window_clear_area_e (Handle, rect.X, rect.Y, rect.Width, rect.Height);
|
|
||||||
else
|
|
||||||
gdk_window_clear_area (Handle, rect.X, rect.Y, rect.Width, rect.Height);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
[DllImport ("libgdk-win32-3.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
[DllImport ("libgdk-win32-3.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||||
static extern void gdk_window_get_user_data (IntPtr raw, out IntPtr data);
|
static extern void gdk_window_get_user_data (IntPtr raw, out IntPtr data);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue