corrected a brace position (Damon Chaplin), which i got wrong when

Wed Apr 15 05:13:09 1998  Tim Janik  <timj@gtk.org>

        * gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
                (Damon Chaplin), which i got wrong when applying Damon's patch the last
                        time.
This commit is contained in:
Tim Janik 1998-04-15 04:00:45 +00:00 committed by Tim Janik
parent 21bb83612d
commit c7c0e3d58d
8 changed files with 43 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Wed Apr 15 05:13:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
(Damon Chaplin), which i got wrong when applying Damon's patch the last
time.
1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx> 1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced

View File

@ -1,3 +1,9 @@
Wed Apr 15 05:13:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
(Damon Chaplin), which i got wrong when applying Damon's patch the last
time.
1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx> 1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced

View File

@ -1,3 +1,9 @@
Wed Apr 15 05:13:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
(Damon Chaplin), which i got wrong when applying Damon's patch the last
time.
1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx> 1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced

View File

@ -1,3 +1,9 @@
Wed Apr 15 05:13:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
(Damon Chaplin), which i got wrong when applying Damon's patch the last
time.
1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx> 1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced

View File

@ -1,3 +1,9 @@
Wed Apr 15 05:13:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
(Damon Chaplin), which i got wrong when applying Damon's patch the last
time.
1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx> 1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced

View File

@ -1,3 +1,9 @@
Wed Apr 15 05:13:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
(Damon Chaplin), which i got wrong when applying Damon's patch the last
time.
1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx> 1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced

View File

@ -1,3 +1,9 @@
Wed Apr 15 05:13:09 1998 Tim Janik <timj@gtk.org>
* gtk/gtklabel.c (gtk_label_size_request): corrected a brace position
(Damon Chaplin), which i got wrong when applying Damon's patch the last
time.
1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx> 1998-04-14 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced

View File

@ -268,7 +268,7 @@ gtk_label_size_request (GtkWidget *widget,
width = MAX (width, width = MAX (width,
gdk_text_width (GTK_WIDGET (label)->style->font, gdk_text_width (GTK_WIDGET (label)->style->font,
row->data, row->data,
(gchar*) row->next->data - (gchar*) row->data) - 1); (gchar*) row->next->data - (gchar*) row->data - 1));
else else
width = MAX (width, gdk_string_width (GTK_WIDGET (label)->style->font, row->data)); width = MAX (width, gdk_string_width (GTK_WIDGET (label)->style->font, row->data));
row = row->next; row = row->next;