# HG changeset patch # User John W. Eaton # Date 1224190168 14400 # Node ID beaf723a49ebbd2d1f7c6dec871d596080df2957 # Parent c6e9ff62c64adce6b8af7779f10a9ff6caaf334c 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,5 +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. + * utils.cc (Fis_absolute_filename, Fis_rooted_relative_filename, Fmake_absolute_filename, Ffind_dir_in_path): New functions. @@ -9,7 +12,6 @@ (base_graphics_object&, const std::string&)): Preserve font and position properties if the axis is "replaced". - 2008-10-16 John W. Eaton * graphics.h.in (class axes::properties): New property: interpreter. diff --git a/src/graphics.cc b/src/graphics.cc --- a/src/graphics.cc +++ b/src/graphics.cc @@ -1666,7 +1666,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++) {