From: <ai...@us...> - 2009-01-06 07:53:34
|
Revision: 9259 http://plplot.svn.sourceforge.net/plplot/?rev=9259&view=rev Author: airwin Date: 2009-01-06 07:53:33 +0000 (Tue, 06 Jan 2009) Log Message: ----------- Change examples to use new functional form of plgfnam (and thick counterpart) to avoid trailing garbage in filename output to stderr. Modified Paths: -------------- trunk/examples/ada/x31a.adb.cmake trunk/examples/ada/xthick31a.adb.cmake Modified: trunk/examples/ada/x31a.adb.cmake =================================================================== --- trunk/examples/ada/x31a.adb.cmake 2009-01-06 07:50:42 UTC (rev 9258) +++ trunk/examples/ada/x31a.adb.cmake 2009-01-06 07:53:33 UTC (rev 9259) @@ -199,7 +199,7 @@ else Put_Line("Output file name read"); end if; - Put_Line(Standard_Error, "Output file name is " & fnam); + Put_Line(Standard_Error, "Output file name is " & plgfnam); -- Set and get the number of digits used to display axis labels. -- Note digit is currently ignored in pls[xyz]ax and Modified: trunk/examples/ada/xthick31a.adb.cmake =================================================================== --- trunk/examples/ada/xthick31a.adb.cmake 2009-01-06 07:50:42 UTC (rev 9258) +++ trunk/examples/ada/xthick31a.adb.cmake 2009-01-06 07:53:33 UTC (rev 9259) @@ -199,7 +199,7 @@ else Put_Line("Output file name read"); end if; - Put_Line(Standard_Error, "Output file name is " & fnam); + Put_Line(Standard_Error, "Output file name is " & Get_Output_File_Name); -- Set and get the number of digits used to display axis labels. -- Note digit is currently ignored in pls[xyz]ax and This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |