]> Pileus Git - ~andy/gtk/commitdiff
Added missing else
authorOwen Taylor <otaylor@src.gnome.org>
Tue, 4 Aug 1998 15:07:55 +0000 (15:07 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Tue, 4 Aug 1998 15:07:55 +0000 (15:07 +0000)
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/gtktable.c

index d4cad6ea37962ebb8ab8080322b889dc853c004a..de1cb36d1e52f93862a44f80b8fd303bc2581fb0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -14,7 +14,7 @@ Tue Aug  4 10:59:19 1998  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktable.[ch]: Empty rows/columns of the table
         should not have been marked as being able to shrink.
-       (Fixes prorlem with shrinking scrollbarless GIMP canvases)
+       (Fixes problem with shrinking scrollbarless GIMP canvases)
 
 1998-08-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
 
index d4cad6ea37962ebb8ab8080322b889dc853c004a..de1cb36d1e52f93862a44f80b8fd303bc2581fb0 100644 (file)
@@ -14,7 +14,7 @@ Tue Aug  4 10:59:19 1998  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktable.[ch]: Empty rows/columns of the table
         should not have been marked as being able to shrink.
-       (Fixes prorlem with shrinking scrollbarless GIMP canvases)
+       (Fixes problem with shrinking scrollbarless GIMP canvases)
 
 1998-08-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
 
index d4cad6ea37962ebb8ab8080322b889dc853c004a..de1cb36d1e52f93862a44f80b8fd303bc2581fb0 100644 (file)
@@ -14,7 +14,7 @@ Tue Aug  4 10:59:19 1998  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktable.[ch]: Empty rows/columns of the table
         should not have been marked as being able to shrink.
-       (Fixes prorlem with shrinking scrollbarless GIMP canvases)
+       (Fixes problem with shrinking scrollbarless GIMP canvases)
 
 1998-08-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
 
index d4cad6ea37962ebb8ab8080322b889dc853c004a..de1cb36d1e52f93862a44f80b8fd303bc2581fb0 100644 (file)
@@ -14,7 +14,7 @@ Tue Aug  4 10:59:19 1998  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktable.[ch]: Empty rows/columns of the table
         should not have been marked as being able to shrink.
-       (Fixes prorlem with shrinking scrollbarless GIMP canvases)
+       (Fixes problem with shrinking scrollbarless GIMP canvases)
 
 1998-08-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
 
index d4cad6ea37962ebb8ab8080322b889dc853c004a..de1cb36d1e52f93862a44f80b8fd303bc2581fb0 100644 (file)
@@ -14,7 +14,7 @@ Tue Aug  4 10:59:19 1998  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktable.[ch]: Empty rows/columns of the table
         should not have been marked as being able to shrink.
-       (Fixes prorlem with shrinking scrollbarless GIMP canvases)
+       (Fixes problem with shrinking scrollbarless GIMP canvases)
 
 1998-08-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
 
index d4cad6ea37962ebb8ab8080322b889dc853c004a..de1cb36d1e52f93862a44f80b8fd303bc2581fb0 100644 (file)
@@ -14,7 +14,7 @@ Tue Aug  4 10:59:19 1998  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktable.[ch]: Empty rows/columns of the table
         should not have been marked as being able to shrink.
-       (Fixes prorlem with shrinking scrollbarless GIMP canvases)
+       (Fixes problem with shrinking scrollbarless GIMP canvases)
 
 1998-08-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
 
index d4cad6ea37962ebb8ab8080322b889dc853c004a..de1cb36d1e52f93862a44f80b8fd303bc2581fb0 100644 (file)
@@ -14,7 +14,7 @@ Tue Aug  4 10:59:19 1998  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktable.[ch]: Empty rows/columns of the table
         should not have been marked as being able to shrink.
-       (Fixes prorlem with shrinking scrollbarless GIMP canvases)
+       (Fixes problem with shrinking scrollbarless GIMP canvases)
 
 1998-08-03  Federico Mena Quintero  <federico@nuclecu.unam.mx>
 
index 08a27ab533218f4420e647690c9c8d77e5c61135..b6884eeb1c349bd85ba0d49ea646fd981e48e00f 100644 (file)
@@ -1234,12 +1234,13 @@ gtk_table_size_allocate_init (GtkTable *table)
          table->rows[row].expand = FALSE;
          table->rows[row].shrink = FALSE;
        }
-      {
-       if (table->rows[row].need_expand)
-         table->rows[row].expand = TRUE;
-       if (!table->rows[row].need_shrink)
-         table->rows[row].shrink = FALSE;
-      }
+      else
+       {
+         if (table->rows[row].need_expand)
+           table->rows[row].expand = TRUE;
+         if (!table->rows[row].need_shrink)
+           table->rows[row].shrink = FALSE;
+       }
     }
 }