changeset 5886:b9676944b7a2

[project @ 2006-07-14 20:53:45 by jwe]
author jwe
date Fri, 14 Jul 2006 20:53:45 +0000
parents bd3041e30d97
children 39cbf6a484bb
files src/ChangeLog src/ov-str-mat.h
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
 2006-07-14  John W. Eaton  <jwe@octave.org>
 
+	* ov-str-mat.h (octave_char_matrix_sq_str::resize):
+	Include fill arg to match base class.
+
 	* ov-base-mat.cc, ov-base-mat.h, ov-base-sparse.cc,
 	ov-base-sparse.h, ov-base.cc, ov-base.h, ov-bool.cc,
 	ov-bool.h, ov-complex.cc, ov-complex.h, ov-intx.h, ov-list.cc,
--- a/src/ov-str-mat.h
+++ b/src/ov-str-mat.h
@@ -207,7 +207,7 @@
   octave_value permute (const Array<int>& vec, bool inv = false) const
     { return octave_value (charNDArray (matrix.permute (vec, inv)), true, '\''); }
 
-  octave_value resize (const dim_vector& dv) const
+  octave_value resize (const dim_vector& dv, bool fill = false) const
     {
       charNDArray retval (matrix);
       retval.resize (dv);