Mercurial > hg > xemacs-beta
comparison src/gtk-xemacs.c @ 2336:53d45fc43132
[xemacs-hg @ 2004-10-16 13:08:48 by malcolmp]
gtk-xemacs.c (gtk_xemacs_size_allocate): Cast pointer to right type.
author | malcolmp |
---|---|
date | Sat, 16 Oct 2004 13:08:58 +0000 |
parents | 04bc9d2f42c7 |
children | dbd2a866e38a |
comparison
equal
deleted
inserted
replaced
2335:145747ca3582 | 2336:53d45fc43132 |
---|---|
300 border_width = GTK_CONTAINER (fixed)->border_width; | 300 border_width = GTK_CONTAINER (fixed)->border_width; |
301 | 301 |
302 children = fixed->children; | 302 children = fixed->children; |
303 while (children) | 303 while (children) |
304 { | 304 { |
305 GtkFixedChild* child = children->data; | 305 GtkFixedChild* child = (GtkFixedChild*) children->data; |
306 children = children->next; | 306 children = children->next; |
307 | 307 |
308 /* | 308 /* |
309 Scrollbars are the only widget that is managed by GTK. See | 309 Scrollbars are the only widget that is managed by GTK. See |
310 comments in gtk_create_scrollbar_instance(). | 310 comments in gtk_create_scrollbar_instance(). |