diff src/sighandlers.cc @ 11066:e678346a47d9

toplev.cc, sighandlers.cc, utils.cc, octave.cc, pt-eval.cc pt-idx.cc: Octave_map to octave_map and octave_scalar_map conversion
author John W. Eaton <jwe@octave.org>
date Thu, 30 Sep 2010 06:00:00 -0400
parents 89f4d7e294cc
children 2f29b765c0ef
line wrap: on
line diff
--- a/src/sighandlers.cc	Thu Sep 30 05:30:28 2010 -0400
+++ b/src/sighandlers.cc	Thu Sep 30 06:00:00 2010 -0400
@@ -662,10 +662,10 @@
 
 }
 
-static Octave_map
+static octave_scalar_map
 make_sig_struct (void)
 {
-  Octave_map m;
+  octave_scalar_map m;
 
 #ifdef SIGABRT
   m.assign ("ABRT", SIGABRT);
@@ -949,7 +949,7 @@
 
   if (args.length () == 0)
     {
-      static Octave_map m = make_sig_struct ();
+      static octave_scalar_map m = make_sig_struct ();
 
       retval = m;
     }