]> Pileus Git - ~andy/gtk/commitdiff
corrected a brace position (Damon Chaplin), which i got wrong when
authorTim Janik <timj@gtk.org>
Wed, 15 Apr 1998 04:00:45 +0000 (04:00 +0000)
committerTim Janik <timj@src.gnome.org>
Wed, 15 Apr 1998 04:00:45 +0000 (04:00 +0000)
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.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtklabel.c

index eb9899ccae5bd57ce61825fad6041b985c707c6b..a580d7703bddebc0f8d2fc6d8ae1aa5ce845328b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
 
        * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced
index eb9899ccae5bd57ce61825fad6041b985c707c6b..a580d7703bddebc0f8d2fc6d8ae1aa5ce845328b 100644 (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>
 
        * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced
index eb9899ccae5bd57ce61825fad6041b985c707c6b..a580d7703bddebc0f8d2fc6d8ae1aa5ce845328b 100644 (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>
 
        * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced
index eb9899ccae5bd57ce61825fad6041b985c707c6b..a580d7703bddebc0f8d2fc6d8ae1aa5ce845328b 100644 (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>
 
        * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced
index eb9899ccae5bd57ce61825fad6041b985c707c6b..a580d7703bddebc0f8d2fc6d8ae1aa5ce845328b 100644 (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>
 
        * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced
index eb9899ccae5bd57ce61825fad6041b985c707c6b..a580d7703bddebc0f8d2fc6d8ae1aa5ce845328b 100644 (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>
 
        * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced
index eb9899ccae5bd57ce61825fad6041b985c707c6b..a580d7703bddebc0f8d2fc6d8ae1aa5ce845328b 100644 (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>
 
        * gdk/gdkwindow.c (gdk_window_xid_at): Fix the problem introduced
index 397b546c1ce4e6e4d424d0681985446e6609ffd8..7bd3687c767cb2af95317c7052fe46d9d86b1c1b 100644 (file)
@@ -268,7 +268,7 @@ gtk_label_size_request (GtkWidget      *widget,
          width = MAX (width,
                        gdk_text_width (GTK_WIDGET (label)->style->font,
                                       row->data,
-                                       (gchar*) row->next->data - (gchar*) row->data) - 1);
+                                       (gchar*) row->next->data - (gchar*) row->data - 1));
       else
         width = MAX (width, gdk_string_width (GTK_WIDGET (label)->style->font, row->data));
       row = row->next;