aboutsummaryrefslogtreecommitdiff
path: root/src/graph/view3D
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-04-05 14:54:35 +0000
committerdos-reis <gdr@axiomatics.org>2008-04-05 14:54:35 +0000
commit8414b45f48d68b898a6dda27069c377088687fb8 (patch)
treefbcb5352ce3903a5530e862e55c0b94dcdd2b297 /src/graph/view3D
parent9b1d808dba887f96e4607ed95465afb3ead9f420 (diff)
downloadopen-axiom-8414b45f48d68b898a6dda27069c377088687fb8.tar.gz
* configure.ac.pamphlet (oa_shrlib_flags): Tidy.
(oa_shrobj_flags): Likewise. * config/var-def.mk (LINK_SHRLIB): Tidy. * INSTALL: Update. * TODO: Likewise.
Diffstat (limited to 'src/graph/view3D')
-rw-r--r--src/graph/view3D/process3d.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/graph/view3D/process3d.c b/src/graph/view3D/process3d.c
index 79c11b42..9f267279 100644
--- a/src/graph/view3D/process3d.c
+++ b/src/graph/view3D/process3d.c
@@ -66,12 +66,7 @@
void
-#ifdef _NO_PROTO
-buttonAction (bKey)
-int bKey;
-#else
buttonAction (int bKey)
-#endif
{
char *s1, *s2;
@@ -855,11 +850,7 @@ buttonAction (int bKey)
/************************** X Event Processing *****************************/
void
-#ifdef _NO_PROTO
-processEvents()
-#else
processEvents(void)
-#endif
{
XEvent *event, tempEvent;
@@ -1594,7 +1585,7 @@ processEvents(void)
} /* else - not closing */
} /* if checkButton */
} /* if FD_ISSET(Xcon,.. */
- else if FD_ISSET(0,&rd) {
+ else if (FD_ISSET(0,&rd)) {
externalControl = spadAction();
if (spadDraw && (externalControl==0)) drawViewport(Xoption);
}