|
From: <and...@us...> - 2008-12-17 15:50:24
|
Revision: 9165
http://plplot.svn.sourceforge.net/plplot/?rev=9165&view=rev
Author: andrewross
Date: 2008-12-17 15:50:18 +0000 (Wed, 17 Dec 2008)
Log Message:
-----------
Fix some differences in text output between different versions of
example 23.
Modified Paths:
--------------
trunk/examples/ada/x23a.adb.cmake
trunk/examples/c++/x23.cc
trunk/examples/java/x23.java
Modified: trunk/examples/ada/x23a.adb.cmake
===================================================================
--- trunk/examples/ada/x23a.adb.cmake 2008-12-17 15:35:45 UTC (rev 9164)
+++ trunk/examples/ada/x23a.adb.cmake 2008-12-17 15:50:18 UTC (rev 9165)
@@ -367,7 +367,7 @@
Put("For example 23 prior to page 12 the FCI is ");
Put(fci_old, Base => 16, Width => 0);
New_Line;
- Put("For example 23 prior to page 12 the font family, style and weight are "
+ Put("For example 23 prior to page 12 the font family, style and weight are "
& family(ifamily) & " " & style(istyle) & " " & weight(iweight));
New_Line;
Modified: trunk/examples/c++/x23.cc
===================================================================
--- trunk/examples/c++/x23.cc 2008-12-17 15:35:45 UTC (rev 9164)
+++ trunk/examples/c++/x23.cc 2008-12-17 15:50:18 UTC (rev 9165)
@@ -312,7 +312,7 @@
pls->gfci(fci_old);
pls->gfont(ifamily, istyle, iweight);
cout << "For example 23 prior to page 12 the FCI is 0x" << hex << fci_old << endl;
- cout << "For example 23 prior to page 12 the family, style and weight are " << family[ifamily] << " " << style[istyle] << " " << weight[iweight] << endl;
+ cout << "For example 23 prior to page 12 the font family, style and weight are " << family[ifamily] << " " << style[istyle] << " " << weight[iweight] << endl;
for (page=11; page<16; page++) {
PLFLT dy = 0.030;
Modified: trunk/examples/java/x23.java
===================================================================
--- trunk/examples/java/x23.java 2008-12-17 15:35:45 UTC (rev 9164)
+++ trunk/examples/java/x23.java 2008-12-17 15:50:18 UTC (rev 9165)
@@ -298,7 +298,7 @@
pls.gfci(fci_old);
pls.gfont(ifamily, istyle, iweight);
System.out.println("For example 23 prior to page 12 the FCI is 0x"+Long.toHexString(fci_old[0]));
- System.out.println("For example 23 prior to page 12 the family, style and weight are "+family[ifamily[0]]+" "+ style[istyle[0]]+ " "+ weight[iweight[0]]);;
+ System.out.println("For example 23 prior to page 12 the font family, style and weight are "+family[ifamily[0]]+" "+ style[istyle[0]]+ " "+ weight[iweight[0]]);;
for (page=11; page<16; page++) {
double dy = 0.030;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|