diff libinterp/corefcn/gl2ps-print.cc @ 25336:389757b7b6af

eliminate redundant octave:: namespace tags * documentation-dock-widget.cc, documentation-dock-widget.h, documentation.cc, files-dock-widget.cc, file-editor-tab.cc, file-editor.cc, octave-cmd.cc, webinfo.cc, resource-manager.cc, environment.cc, ft-text-renderer.cc, gl2ps-print.cc, gtk-manager.cc, help.cc, oct-stream.cc, sighandlers.cc, symtab.cc, bp-table.cc, comment-list.h, jit-typeinfo.cc, oct-parse.in.yy, pt-cbinop.cc, pt-eval.cc, pt-idx.cc, pt-jit.cc, cmd-edit.cc: Eliminate octave:: namespace tags inside octave namespace. Style fixes.
author John W. Eaton <jwe@octave.org>
date Wed, 02 May 2018 00:30:00 -0400
parents 078b795c5219
children 7fbc39a46be8
line wrap: on
line diff
--- a/libinterp/corefcn/gl2ps-print.cc	Mon Apr 30 13:42:48 2018 -0700
+++ b/libinterp/corefcn/gl2ps-print.cc	Wed May 02 00:30:00 2018 -0400
@@ -265,12 +265,12 @@
     // Build an svg text element from a list of parsed strings.
     std::string strlist_to_svg (double x, double y, double z, Matrix box,
                                 double rotation,
-                                std::list<octave::text_renderer::string>& lst);
+                                std::list<text_renderer::string>& lst);
 
     // Build a list of postscript commands from a list of parsed strings.
     std::string strlist_to_ps (double x, double y, double z, Matrix box,
                                double rotation,
-                               std::list<octave::text_renderer::string>& lst);
+                               std::list<text_renderer::string>& lst);
 
     int alignment_to_mode (int ha, int va) const;
     FILE *fp;
@@ -781,7 +781,7 @@
   std::string
   gl2ps_renderer::strlist_to_svg (double x, double y, double z,
                                   Matrix box, double rotation,
-                                  std::list<octave::text_renderer::string>& lst)
+                                  std::list<text_renderer::string>& lst)
   {
     if (lst.empty ())
       return "";
@@ -877,7 +877,7 @@
   std::string
   gl2ps_renderer::strlist_to_ps (double x, double y, double z,
                                  Matrix box, double rotation,
-                                 std::list<octave::text_renderer::string>& lst)
+                                 std::list<text_renderer::string>& lst)
   {
     // Translate and rotate coordinates in order to use bottom-left alignment
     fix_strlist_position (x, y, z, box, rotation, lst);