tcledit: Fix a few compile issues.

This commit is contained in:
Gregory Nutt 2016-11-11 06:57:01 -06:00
parent bb0e1a8924
commit 82cd4308e3
3 changed files with 26 additions and 24 deletions

View File

@ -50,6 +50,7 @@ extern "C"
* Included Files * Included Files
*************************************************************************/ *************************************************************************/
#include <stdint.h>
#include <stdio.h> #include <stdio.h>
/************************************************************************* /*************************************************************************

View File

@ -40,6 +40,7 @@
* Included files * Included files
*************************************************************************/ *************************************************************************/
#include <stdint.h>
#include <stdio.h> #include <stdio.h>
/************************************************************************* /*************************************************************************

View File

@ -195,30 +195,30 @@ static int tcledit_setmode(ClientData clientData,
ginfo("Entering NEWX mode\n"); ginfo("Entering NEWX mode\n");
g_edit_plane = EDITPLANE_X; g_edit_plane = EDITPLANE_X;
g_edit_rect.plane = g_plane_position[EDITPLANE_X]; g_edit_rect.plane = g_plane_position[EDITPLANE_X];
g_edit_rect.hStart = g_plane_position[EDITPLANE_Y]; g_edit_rect.hstart = g_plane_position[EDITPLANE_Y];
g_edit_rect.hEnd = g_edit_rect.hStart; g_edit_rect.hend = g_edit_rect.hstart;
g_edit_rect.vStart = g_plane_position[EDITPLANE_Z]; g_edit_rect.vstart = g_plane_position[EDITPLANE_Z];
g_edit_rect.vEnd = g_edit_rect.vStart; g_edit_rect.vend = g_edit_rect.vstart;
} }
else if (strcmp(argv[2], "y") == 0) else if (strcmp(argv[2], "y") == 0)
{ {
ginfo("Entering NEWY mode\n"); ginfo("Entering NEWY mode\n");
g_edit_plane = EDITPLANE_Y; g_edit_plane = EDITPLANE_Y;
g_edit_rect.plane = g_plane_position[EDITPLANE_Y]; g_edit_rect.plane = g_plane_position[EDITPLANE_Y];
g_edit_rect.hStart = g_plane_position[EDITPLANE_X]; g_edit_rect.hstart = g_plane_position[EDITPLANE_X];
g_edit_rect.hEnd = g_edit_rect.hStart; g_edit_rect.hend = g_edit_rect.hstart;
g_edit_rect.vStart = g_plane_position[EDITPLANE_Z]; g_edit_rect.vstart = g_plane_position[EDITPLANE_Z];
g_edit_rect.vEnd = g_edit_rect.vStart; g_edit_rect.vend = g_edit_rect.vstart;
} }
else if (strcmp(argv[2], "z") == 0) else if (strcmp(argv[2], "z") == 0)
{ {
ginfo("Entering NEWZ mode\n"); ginfo("Entering NEWZ mode\n");
g_edit_plane = EDITPLANE_Z; g_edit_plane = EDITPLANE_Z;
g_edit_rect.plane = g_plane_position[EDITPLANE_Z]; g_edit_rect.plane = g_plane_position[EDITPLANE_Z];
g_edit_rect.hStart = g_plane_position[EDITPLANE_X]; g_edit_rect.hstart = g_plane_position[EDITPLANE_X];
g_edit_rect.hEnd = g_edit_rect.hStart; g_edit_rect.hend = g_edit_rect.hstart;
g_edit_rect.vStart = g_plane_position[EDITPLANE_Y]; g_edit_rect.vstart = g_plane_position[EDITPLANE_Y];
g_edit_rect.vEnd = g_edit_rect.vStart; g_edit_rect.vend = g_edit_rect.vstart;
} }
else else
{ {
@ -370,14 +370,14 @@ static int tcledit_new_edit(ClientData clientData,
else if (strcmp(argv[1], "y") == 0) else if (strcmp(argv[1], "y") == 0)
{ {
ginfo("New horizontal Y coordinates: {%d,%d}\n", start, end); ginfo("New horizontal Y coordinates: {%d,%d}\n", start, end);
g_edit_rect.hStart = start; g_edit_rect.hstart = start;
g_edit_rect.hEnd = end; g_edit_rect.hend = end;
} }
else if (strcmp(argv[1], "z") == 0) else if (strcmp(argv[1], "z") == 0)
{ {
ginfo("New vertical Z coordinates: {%d,%d}\n", start, end); ginfo("New vertical Z coordinates: {%d,%d}\n", start, end);
g_edit_rect.vStart = start; g_edit_rect.vstart = start;
g_edit_rect.vEnd = end; g_edit_rect.vend = end;
} }
else else
{ {
@ -390,8 +390,8 @@ static int tcledit_new_edit(ClientData clientData,
if (strcmp(argv[1], "x") == 0) if (strcmp(argv[1], "x") == 0)
{ {
ginfo("New horizontal X coordinates: {%d,%d}\n", start, end); ginfo("New horizontal X coordinates: {%d,%d}\n", start, end);
g_edit_rect.hStart = start; g_edit_rect.hstart = start;
g_edit_rect.hEnd = end; g_edit_rect.hend = end;
} }
else if (strcmp(argv[1], "y") == 0) else if (strcmp(argv[1], "y") == 0)
{ {
@ -401,8 +401,8 @@ static int tcledit_new_edit(ClientData clientData,
else if (strcmp(argv[1], "z") == 0) else if (strcmp(argv[1], "z") == 0)
{ {
ginfo("New vertical Z coordinates: {%d,%d}\n", start, end); ginfo("New vertical Z coordinates: {%d,%d}\n", start, end);
g_edit_rect.vStart = start; g_edit_rect.vstart = start;
g_edit_rect.vEnd = end; g_edit_rect.vend = end;
} }
else else
{ {
@ -415,14 +415,14 @@ static int tcledit_new_edit(ClientData clientData,
if (strcmp(argv[1], "x") == 0) if (strcmp(argv[1], "x") == 0)
{ {
ginfo("New horizontal X coordinates: {%d,%d}\n", start, end); ginfo("New horizontal X coordinates: {%d,%d}\n", start, end);
g_edit_rect.hStart = start; g_edit_rect.hstart = start;
g_edit_rect.hEnd = end; g_edit_rect.hend = end;
} }
else if (strcmp(argv[1], "y") == 0) else if (strcmp(argv[1], "y") == 0)
{ {
ginfo("New vertical Y coordinates: {%d,%d}\n", start, end); ginfo("New vertical Y coordinates: {%d,%d}\n", start, end);
g_edit_rect.vStart = start; g_edit_rect.vstart = start;
g_edit_rect.vEnd = end; g_edit_rect.vend = end;
} }
else if (strcmp(argv[1], "z") == 0) else if (strcmp(argv[1], "z") == 0)
{ {