s/inputbox/Inputbox/

This commit is contained in:
Martin Schaffner 2005-01-25 19:48:10 +00:00
parent 44054051d1
commit 25fb9c2bc1
2 changed files with 4 additions and 3 deletions

View file

@ -9,6 +9,7 @@
* include/ui.h, ui/barbox.c: make ui_barbox_update return void
* patching file ui/file.c, ui/listbox.c, file ui/mouse.c, ui/scroll.c,
ui/window.c: use timer_get_fixed_seconds instead of TICKER macro
* ui/number.c: s/inputbox/Inputbox/
2005-01-24 Chris Taylor <c.taylor@student.curtin.edu.au>

View file

@ -1,4 +1,4 @@
/* $Id: number.c,v 1.5 2005-01-25 19:37:59 schaffner Exp $ */
/* $Id: number.c,v 1.6 2005-01-25 19:48:10 schaffner Exp $ */
/*
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
@ -13,7 +13,7 @@ COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
#ifdef RCS
static char rcsid[] = "$Id: number.c,v 1.5 2005-01-25 19:37:59 schaffner Exp $";
static char rcsid[] = "$Id: number.c,v 1.6 2005-01-25 19:48:10 schaffner Exp $";
#endif
#ifdef HAVE_CONFIG_H
@ -110,7 +110,7 @@ double ui_input_number( short xc, short yc, char * text, double OrgNumber )
ui_close_window(wnd);
OrgNumber = atof(inputbox->text);
OrgNumber = atof(InputBox->text);
return OrgNumber;