set composite names.

Sun Nov 29 06:12:01 1998  Tim Janik  <timj@gtk.org>

        * gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment):
        set composite names.
This commit is contained in:
Tim Janik 1998-11-29 09:51:02 +00:00 committed by Tim Janik
parent f755abd275
commit c7850eccde
8 changed files with 23 additions and 0 deletions

View File

@ -1,5 +1,8 @@
Sun Nov 29 06:12:01 1998 Tim Janik <timj@gtk.org>
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment):
set composite names.
* gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
check, people must use gtk_type_init().
fixed up type allocation for foreign fundamentals.

View File

@ -1,5 +1,8 @@
Sun Nov 29 06:12:01 1998 Tim Janik <timj@gtk.org>
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment):
set composite names.
* gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
check, people must use gtk_type_init().
fixed up type allocation for foreign fundamentals.

View File

@ -1,5 +1,8 @@
Sun Nov 29 06:12:01 1998 Tim Janik <timj@gtk.org>
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment):
set composite names.
* gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
check, people must use gtk_type_init().
fixed up type allocation for foreign fundamentals.

View File

@ -1,5 +1,8 @@
Sun Nov 29 06:12:01 1998 Tim Janik <timj@gtk.org>
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment):
set composite names.
* gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
check, people must use gtk_type_init().
fixed up type allocation for foreign fundamentals.

View File

@ -1,5 +1,8 @@
Sun Nov 29 06:12:01 1998 Tim Janik <timj@gtk.org>
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment):
set composite names.
* gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
check, people must use gtk_type_init().
fixed up type allocation for foreign fundamentals.

View File

@ -1,5 +1,8 @@
Sun Nov 29 06:12:01 1998 Tim Janik <timj@gtk.org>
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment):
set composite names.
* gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
check, people must use gtk_type_init().
fixed up type allocation for foreign fundamentals.

View File

@ -1,5 +1,8 @@
Sun Nov 29 06:12:01 1998 Tim Janik <timj@gtk.org>
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_set_[hv]adjustment):
set composite names.
* gtk/gtktypeutils.c (gtk_type_unique): removed default initialization
check, people must use gtk_type_init().
fixed up type allocation for foreign fundamentals.

View File

@ -277,6 +277,7 @@ gtk_scrolled_window_set_hadjustment (GtkScrolledWindow *scrolled_window,
{
gtk_widget_push_composite_child ();
scrolled_window->hscrollbar = gtk_hscrollbar_new (hadjustment);
gtk_widget_set_composite_name (scrolled_window->hscrollbar, "hscrollbar");
gtk_widget_pop_composite_child ();
gtk_widget_set_parent (scrolled_window->hscrollbar, GTK_WIDGET (scrolled_window));
@ -329,6 +330,7 @@ gtk_scrolled_window_set_vadjustment (GtkScrolledWindow *scrolled_window,
{
gtk_widget_push_composite_child ();
scrolled_window->vscrollbar = gtk_vscrollbar_new (vadjustment);
gtk_widget_set_composite_name (scrolled_window->vscrollbar, "vscrollbar");
gtk_widget_pop_composite_child ();
gtk_widget_set_parent (scrolled_window->vscrollbar, GTK_WIDGET (scrolled_window));