aboutsummaryrefslogtreecommitdiff
path: root/src/graph/view2D
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/view2D')
-rw-r--r--src/graph/view2D/main2d.c10
-rw-r--r--src/graph/view2D/process2d.c8
-rw-r--r--src/graph/view2D/viewport2D.c2
3 files changed, 10 insertions, 10 deletions
diff --git a/src/graph/view2D/main2d.c b/src/graph/view2D/main2d.c
index 90405883..fcdcf929 100644
--- a/src/graph/view2D/main2d.c
+++ b/src/graph/view2D/main2d.c
@@ -99,8 +99,8 @@ int followMouse = no,
ack = 1,
someInt,
drawMore,
- spadMode=no, /* yes if receiving AXIOM command and calling drawViewport */
- spadDraw=no, /* yes if drawing viewport because of a AXIOM command */
+ spadMode=no, /* yes if receiving OpenAxiom command and calling drawViewport */
+ spadDraw=no, /* yes if drawing viewport because of a OpenAxiom command */
pointsON = yes, /* these would affect the choices in buttons.c */
connectON = yes,
splineON = no,
@@ -114,7 +114,7 @@ int followMouse = no,
queriedGraph = 0, /* current graph queried */
picking=0,
dropping=0,
- viewAloned, /** if not connected to AXIOM **/
+ viewAloned, /** if not connected to OpenAxiom **/
mono,
totalColors,
totalSolid,
@@ -171,7 +171,7 @@ main(void)
/**** link Xwindows to viewports - X10 feature ****/
table = XCreateAssocTable(nbuckets);
- /**** Create AXIOM color map ****/
+ /**** Create OpenAxiom color map ****/
totalColors = XInitSpadFill(dsply,scrn,&colorMap,
&totalHues,&totalSolidShades,
&totalDitheredAndSolids,&totalShades);
@@ -417,7 +417,7 @@ main(void)
i = 123;
code=check(write(Socket,&i,intSize));
- /* Check if I am getting stuff from AXIOM or, if I am viewAlone. */
+ /* Check if I am getting stuff from OpenAxiom or, if I am viewAlone. */
readViewman(&viewAloned,intSize);
readViewman(&viewData,sizeof(view2DStruct));
readViewman(&i,intSize);
diff --git a/src/graph/view2D/process2d.c b/src/graph/view2D/process2d.c
index 97f641ef..595e5a1c 100644
--- a/src/graph/view2D/process2d.c
+++ b/src/graph/view2D/process2d.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 1991-2002, The Numerical ALgorithms Group Ltd.
+ Copyright (C) 1991-2002, The Numerical Algorithms Group Ltd.
All rights reserved.
Copyright (C) 2007-2008, Gabriel Dos Reis.
All rights reserved.
@@ -16,7 +16,7 @@
the documentation and/or other materials provided with the
distribution.
- - Neither the name of The Numerical ALgorithms Group Ltd. nor the
+ - Neither the name of The Numerical Algorithms Group Ltd. nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
@@ -193,7 +193,7 @@ buttonAction (int bKey)
case pick2D:
if (viewAloned) {
- sprintf(control->message,"%s","Cannot pick without AXIOM!");
+ sprintf(control->message,"%s","Cannot pick without OpenAxiom!");
writeControlMessage();
XSync(dsply,False);
}
@@ -207,7 +207,7 @@ buttonAction (int bKey)
case drop2D:
if (viewAloned) {
- sprintf(control->message,"%s","Cannot drop without AXIOM!");
+ sprintf(control->message,"%s","Cannot drop without OpenAxiom!");
writeControlMessage();
XSync(dsply,False);
} else {
diff --git a/src/graph/view2D/viewport2D.c b/src/graph/view2D/viewport2D.c
index a5934018..0ce5de88 100644
--- a/src/graph/view2D/viewport2D.c
+++ b/src/graph/view2D/viewport2D.c
@@ -630,7 +630,7 @@ makeViewport(char *title,int vX,int vY,int vW,int vH,int showCP)
(void) XSetWMProtocols(dsply, viewTitleWindow, &wm_delete_window, 1);
XSetNormalHints(dsply,viewTitleWindow,&titleSizeHints);
- XSetStandardProperties(dsply,viewTitleWindow,"AXIOM 2D",viewport->title,
+ XSetStandardProperties(dsply,viewTitleWindow,"OpenAxiom 2D",viewport->title,
None,NULL,0,&titleSizeHints);
viewport->titleWindow = viewTitleWindow;