diff src/ov-str-mat.cc @ 5400:c7e3cf2fce3e

[project @ 2005-07-05 15:01:32 by jwe]
author jwe
date Tue, 05 Jul 2005 15:01:32 +0000
parents 4c8a2e4e0717
children 66ad03c58880
line wrap: on
line diff
--- a/src/ov-str-mat.cc	Fri Jun 17 21:16:22 2005 +0000
+++ b/src/ov-str-mat.cc	Tue Jul 05 15:01:32 2005 +0000
@@ -81,8 +81,8 @@
 }
 
 octave_value
-octave_char_matrix_str::do_index_op (const octave_value_list& idx,
-				     int resize_ok)
+octave_char_matrix_str::do_index_op_internal (const octave_value_list& idx,
+					      int resize_ok, char type)
 {
   octave_value retval;
 
@@ -97,7 +97,7 @@
 
 	if (! error_state)
 	  retval = octave_value (charNDArray (matrix.index (i, j, resize_ok)),
-				 true);
+				 true, type);
       }
       break;
 
@@ -107,7 +107,7 @@
 
 	if (! error_state)
 	  retval = octave_value (charNDArray (matrix.index (i, resize_ok)),
-				 true);
+				 true, type);
       }
       break;
 
@@ -120,7 +120,7 @@
 
 	if (! error_state)
 	  retval = octave_value (charNDArray (matrix.index (idx_vec, resize_ok)),
-				 true);
+				 true, type);
       }
       break;
     }