diff src/ov-base.cc @ 4457:d7d9ca19960a

[project @ 2003-07-11 03:05:38 by jwe]
author jwe
date Fri, 11 Jul 2003 03:05:39 +0000
parents f3c21a1d1c62
children e944fbe3fff2
line wrap: on
line diff
--- a/src/ov-base.cc
+++ b/src/ov-base.cc
@@ -166,7 +166,7 @@
 }
 
 octave_value
-octave_base_value::convert_to_str_internal (bool) const
+octave_base_value::convert_to_str_internal (bool, bool) const
 {
   gripe_wrong_type_arg ("octave_base_value::convert_to_str_internal ()",
 			type_name ());
@@ -323,11 +323,11 @@
 }
 
 string_vector
-octave_base_value::all_strings (bool pad) const
+octave_base_value::all_strings (bool pad, bool force) const
 {
   string_vector retval;
 
-  octave_value tmp = convert_to_str (pad);
+  octave_value tmp = convert_to_str (pad, force);
 
   if (! error_state)
     retval = tmp.all_strings ();
@@ -336,11 +336,11 @@
 }
 
 std::string
-octave_base_value::string_value (void) const
+octave_base_value::string_value (bool force) const
 {
   std::string retval;
 
-  octave_value tmp = convert_to_str ();
+  octave_value tmp = convert_to_str (force);
 
   if (! error_state)
     retval = tmp.string_value ();