# 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 --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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 --git a/src/graphics.cc b/src/graphics.cc --- a/src/graphics.cc +++ b/src/graphics.cc @@ -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++) {