diff libinterp/dldfcn/__init_gnuplot__.cc @ 25646:4d565baa475e

move libinterp/utils functions inside octave namespace * utils.h, utils.cc: Move functions inside octave namespace. Change all uses.
author John W. Eaton <jwe@octave.org>
date Thu, 19 Jul 2018 16:55:47 -0400
parents 6652d3823428
children 8b6f1731474b
line wrap: on
line diff
--- a/libinterp/dldfcn/__init_gnuplot__.cc	Thu Jul 19 20:11:31 2018 -0700
+++ b/libinterp/dldfcn/__init_gnuplot__.cc	Thu Jul 19 16:55:47 2018 -0400
@@ -189,7 +189,7 @@
           std::string gnuplot_binary = tmp(0).string_value ();
 
           string_vector args (gnuplot_binary);
-          std::string gnuplot_path = search_path_for_file (path, args);
+          std::string gnuplot_path = octave::search_path_for_file (path, args);
 
           octave::sys::file_stat fs (gnuplot_path);
 
@@ -197,7 +197,7 @@
             {
               args[0] += exeext;
 
-              gnuplot_path = search_path_for_file (path, args);
+              gnuplot_path = octave::search_path_for_file (path, args);
 
               fs = octave::sys::file_stat (gnuplot_path);
             }