2003-02-28 Miguel de Icaza <miguel@ximian.com>

* glue/widget.c (gtksharp_gtk_widget_get_window): Fix.  Return the
	window, not the address of the window pointer.

svn path=/trunk/gtk-sharp/; revision=12073
This commit is contained in:
Miguel de Icaza 2003-02-28 22:52:28 +00:00
parent e77d9ff981
commit ce4014e8b5
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-02-28 Miguel de Icaza <miguel@ximian.com>
* glue/widget.c (gtksharp_gtk_widget_get_window): Fix. Return the
window, not the address of the window pointer.
2003-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* generator/SignalHandler.cs: the generated Dispose method now calls

View File

@ -16,6 +16,6 @@ gtksharp_gtk_widget_get_allocation (GtkWidget *widget)
GdkWindow *
gtksharp_gtk_widget_get_window (GtkWidget *widget)
{
return &widget->window;
return widget->window;
}