mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Hmm, setter functions normally assign the new value to the object field.
2001-12-03 Havoc Pennington <hp@pobox.com> * gtk/gtktextview.c (set_window_height): (set_window_width): Hmm, setter functions normally assign the new value to the object field. Reported by Chris Phelps.
This commit is contained in:
parent
b15bf68d9e
commit
35fcacbf8c
@ -1,3 +1,9 @@
|
||||
2001-12-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* gtk/gtktextview.c (set_window_height):
|
||||
(set_window_width): Hmm, setter functions normally assign the new
|
||||
value to the object field. Reported by Chris Phelps.
|
||||
|
||||
2001-11-30 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-12-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* gtk/gtktextview.c (set_window_height):
|
||||
(set_window_width): Hmm, setter functions normally assign the new
|
||||
value to the object field. Reported by Chris Phelps.
|
||||
|
||||
2001-11-30 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-12-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* gtk/gtktextview.c (set_window_height):
|
||||
(set_window_width): Hmm, setter functions normally assign the new
|
||||
value to the object field. Reported by Chris Phelps.
|
||||
|
||||
2001-11-30 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-12-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* gtk/gtktextview.c (set_window_height):
|
||||
(set_window_width): Hmm, setter functions normally assign the new
|
||||
value to the object field. Reported by Chris Phelps.
|
||||
|
||||
2001-11-30 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-12-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* gtk/gtktextview.c (set_window_height):
|
||||
(set_window_width): Hmm, setter functions normally assign the new
|
||||
value to the object field. Reported by Chris Phelps.
|
||||
|
||||
2001-11-30 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-12-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* gtk/gtktextview.c (set_window_height):
|
||||
(set_window_width): Hmm, setter functions normally assign the new
|
||||
value to the object field. Reported by Chris Phelps.
|
||||
|
||||
2001-11-30 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
|
||||
|
@ -1,3 +1,9 @@
|
||||
2001-12-03 Havoc Pennington <hp@pobox.com>
|
||||
|
||||
* gtk/gtktextview.c (set_window_height):
|
||||
(set_window_width): Hmm, setter functions normally assign the new
|
||||
value to the object field. Reported by Chris Phelps.
|
||||
|
||||
2001-11-30 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtknotebook.c (gtk_notebook_remove_tab_label): set the
|
||||
|
@ -6457,6 +6457,8 @@ set_window_width (GtkTextView *text_view,
|
||||
{
|
||||
if ((*winp)->requisition.width == width)
|
||||
return;
|
||||
|
||||
(*winp)->requisition.width = width;
|
||||
}
|
||||
|
||||
gtk_widget_queue_resize (GTK_WIDGET (text_view));
|
||||
@ -6495,6 +6497,8 @@ set_window_height (GtkTextView *text_view,
|
||||
{
|
||||
if ((*winp)->requisition.height == height)
|
||||
return;
|
||||
|
||||
(*winp)->requisition.height = height;
|
||||
}
|
||||
|
||||
gtk_widget_queue_resize (GTK_WIDGET (text_view));
|
||||
|
Loading…
Reference in New Issue
Block a user