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:
parent
e77d9ff981
commit
ce4014e8b5
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue