diff libinterp/corefcn/graphics.cc @ 17861:870f3e12e163

maint: Use phrase "FIXME:" for problem areas in code. * libinterp/corefcn/betainc.cc, libinterp/corefcn/bitfcns.cc, libinterp/corefcn/display.cc, libinterp/corefcn/gammainc.cc, libinterp/corefcn/gl2ps-renderer.cc, libinterp/corefcn/graphics.cc, libinterp/corefcn/load-save.cc, libinterp/corefcn/ls-hdf5.cc, libinterp/corefcn/ls-mat5.cc, libinterp/corefcn/ls-oct-binary.cc, libinterp/corefcn/luinc.cc, libinterp/corefcn/mex.cc, libinterp/corefcn/regexp.cc, libinterp/corefcn/sighandlers.cc, libinterp/corefcn/sparse-xpow.cc, libinterp/corefcn/urlwrite.cc, libinterp/corefcn/variables.cc, libinterp/dldfcn/__init_fltk__.cc, libinterp/dldfcn/__magick_read__.cc, libinterp/dldfcn/chol.cc, libinterp/octave-value/ov-bool-sparse.cc, libinterp/octave-value/ov-fcn-inline.cc, libinterp/octave-value/ov-flt-re-mat.cc, libinterp/octave-value/ov-re-mat.cc, libinterp/octave-value/ov-str-mat.cc, libinterp/parse-tree/lex.ll, liboctave/numeric/SparseCmplxQR.cc, liboctave/numeric/SparseQR.cc, liboctave/numeric/sparse-dmsolve.cc, liboctave/util/lo-utils.cc, liboctave/util/sparse-util.cc, liboctave/util/url-transfer.cc: maint: Use phrase "FIXME:" for problem areas in code.
author Rik <rik@octave.org>
date Wed, 06 Nov 2013 11:42:35 -0800
parents 7533f4482006
children 6a71e5030df5 2e7cad6f180c 5e99fd6ea758
line wrap: on
line diff
--- a/libinterp/corefcn/graphics.cc	Wed Nov 06 11:14:40 2013 -0800
+++ b/libinterp/corefcn/graphics.cc	Wed Nov 06 11:42:35 2013 -0800
@@ -3130,7 +3130,7 @@
     }
 }
 
-// FIXME This should update monitorpositions and pointerlocation, but
+// FIXME: This should update monitorpositions and pointerlocation, but
 // as these properties are yet used, and so it doesn't matter that they
 // aren't set yet.
 void
@@ -6206,7 +6206,7 @@
               min_val = -1;
               max_val = 1;
             }
-          // FIXME -- maybe this test should also be relative?
+          // FIXME: maybe this test should also be relative?
           else if (std::abs (min_val - max_val)
                    < sqrt (std::numeric_limits<double>::epsilon ()))
             {
@@ -6246,7 +6246,7 @@
   double hi = (lims.get ().matrix_value ()) (1);
   bool is_negative = lo < 0 && hi < 0;
   double tmp;
-  // FIXME should this be checked for somewhere else? (i.e. set{x,y,z}lim)
+  // FIXME: should this be checked for somewhere else? (i.e. set{x,y,z}lim)
   if (hi < lo)
     {
       tmp = hi;
@@ -6273,7 +6273,7 @@
 
   if (is_logscale && ! (xisinf (hi) || xisinf (lo)))
     {
-      // FIXME - what if (hi-lo) < tick_sep?
+      // FIXME: what if (hi-lo) < tick_sep?
       //         ex: loglog ([1 1.1])
       tick_sep = std::max (tick_sep, 1.);
       tick_sep = std::ceil (tick_sep);