changeset 11057:4d9f310b32bb

replace Octave_map->octave_map in oct-errno
author Jaroslav Hajek <highegg@gmail.com>
date Thu, 30 Sep 2010 08:04:37 +0200
parents 4bec51eb58e2
children 3329616444f0
files src/ChangeLog src/oct-errno.h
diffstat 2 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Sep 30 08:00:22 2010 +0200
+++ b/src/ChangeLog	Thu Sep 30 08:04:37 2010 +0200
@@ -1,3 +1,9 @@
+2010-09-30  Jaroslav Hajek  <highegg@gmail.com>
+
+	* oct-errno.cc (octave_errno::list, octave_errno::do_list): Use
+	octave_scalar_map instead of Octave_map.
+	* oct-errno.h: Update decls.
+
 2010-09-30  Jaroslav Hajek  <highegg@gmail.com>
 
 	* pt-idx.cc (tree_index_expression::make_arg_struct): Use octave_map
--- a/src/oct-errno.h	Thu Sep 30 08:00:22 2010 +0200
+++ b/src/oct-errno.h	Thu Sep 30 08:04:37 2010 +0200
@@ -45,7 +45,7 @@
 
   static int lookup (const std::string& name);
 
-  static Octave_map list (void);
+  static octave_scalar_map list (void);
 
   static int get (void) { return errno; }
 
@@ -64,7 +64,7 @@
 
   int do_lookup (const std::string& name);
 
-  Octave_map do_list (void);
+  octave_scalar_map do_list (void);
 };
 
 #endif