# HG changeset patch # User John W. Eaton # Date 1231139873 -3600 # Node ID bfac13fcb6feaaa5183ecd95b1d75ddc23bb739e # Parent 78eae8c8792d3293dbb4e834e1ecc53d0e52b2cc graphics.cc (base_properties::remove_child): handle children as a column vector instead of a row vector diff -r 78eae8c8792d -r bfac13fcb6fe src/ChangeLog --- a/src/ChangeLog Mon Jan 05 08:17:10 2009 +0100 +++ b/src/ChangeLog Mon Jan 05 08:17:53 2009 +0100 @@ -1,3 +1,8 @@ +2008-10-16 John W. Eaton + + * graphics.cc (base_properties::remove_child): Handle children as + a column vector instead of a row vector. + 2008-12-08 Jaroslav Hajek * pt-select.cc (equal): Make empty matrices match. diff -r 78eae8c8792d -r bfac13fcb6fe src/graphics.cc --- a/src/graphics.cc Mon Jan 05 08:17:10 2009 +0100 +++ b/src/graphics.cc Mon Jan 05 08:17:53 2009 +0100 @@ -702,7 +702,7 @@ if (k >= 0) { - Matrix new_kids (1, n-1); + Matrix new_kids (n-1, 1); octave_idx_type j = 0; for (octave_idx_type i = 0; i < n; i++) {