From 0626c18f1b1aa99ad4d91953d74446bff155ef57 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 14 Sep 2006 03:57:32 +0000 Subject: [PATCH] Mergeed "Status" section into "Misc". --- src/xio.c | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/src/xio.c b/src/xio.c index 615ea97..2bdb465 100644 --- a/src/xio.c +++ b/src/xio.c @@ -10,8 +10,8 @@ static XtAppContext app_context; static Widget toplevel, text, form; -static Widget navigation, weapons, status, planets, misc; -static Widget navlabel, weaplabel, statlabel, planlabel, misclabel; +static Widget navigation, weapons, planets, misc; +static Widget navlabel, weaplabel, planlabel, misclabel; static String fallback[] = { /* text window resources */ @@ -60,10 +60,6 @@ static struct cmd_t commands[] = { {"Deathray", noargs_proc, &weapons, 0}, {"Mayday", noargs_proc, &weapons, 0}, - {"Score", noargs_proc, &status, 0}, - {"Report", noargs_proc, &status, 0}, - {"Computer", noargs_proc, &status, 0}, - {"Sensors", noargs_proc, &planets, OPTION_PLANETS}, {"Orbit", noargs_proc, &planets, OPTION_PLANETS}, {"Transport", noargs_proc, &planets, OPTION_PLANETS}, @@ -72,7 +68,9 @@ static struct cmd_t commands[] = { {"Shuttle", noargs_proc, &planets, OPTION_PLANETS}, {"Planets", noargs_proc, &planets, OPTION_PLANETS}, - {"Emexit", noargs_proc, &misc, 0}, + {"Score", noargs_proc, &misc, 0}, + {"Report", noargs_proc, &misc, 0}, + {"Computer", noargs_proc, &misc, 0}, {"Save", NULL, &misc, 0}, {"Quit", quit_proc, &misc, 0}, {"Help", noargs_proc, &misc, 0}, @@ -116,20 +114,10 @@ static void instantiate_main(int argc, char **argv) labelWidgetClass, weapons, XtNborderWidth, 0, NULL); - status = XtVaCreateManagedWidget("status", - boxWidgetClass, form, - XtNborderWidth, 0, - XtNfromVert, weapons, - XtNorientation, XtorientHorizontal, - NULL); - statlabel = XtVaCreateManagedWidget("Status: ", - labelWidgetClass, status, - XtNborderWidth, 0, - NULL); planets = XtVaCreateManagedWidget("planets", boxWidgetClass, form, XtNborderWidth, 0, - XtNfromVert, status, + XtNfromVert, weapons, XtNorientation, XtorientHorizontal, NULL); planlabel = XtVaCreateManagedWidget("Planets: ", -- 2.31.1