remove underscores

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@720 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-03-25 07:16:33 +00:00
parent b59549d0d6
commit 2361bccd9d

View File

@ -39,7 +39,7 @@
#include "basiccell.h"
#include "datecell.h"
static void setDateCellValue (struct _BasicCell *, const char *);
static void setDateCellValue (BasicCell *, const char *);
#define SET(cell,str) { \
if ((cell)->value) free ((cell)->value); \
@ -181,7 +181,7 @@ xaccValidateDate (struct tm *date, int recur)
/* ================================================ */
static const char *
DateEnter (struct _BasicCell *_cell, const char * curr)
DateEnter (BasicCell *_cell, const char * curr)
{
DateCell *cell = (DateCell *) _cell;
@ -195,7 +195,7 @@ DateEnter (struct _BasicCell *_cell, const char * curr)
/* ================================================ */
static const char *
DateMV (struct _BasicCell *_cell,
DateMV (BasicCell *_cell,
const char *oldval,
const char *change,
const char *newval)
@ -308,7 +308,7 @@ DateMV (struct _BasicCell *_cell,
/* ================================================ */
static const char *
DateLeave (struct _BasicCell *_cell, const char * curr)
DateLeave (BasicCell *_cell, const char * curr)
{
DateCell *cell = (DateCell *) _cell;
char buff[30];
@ -402,7 +402,7 @@ xaccSetDateCellValue (DateCell *cell, int day, int mon, int year)
/* ================================================ */
static void
setDateCellValue (struct _BasicCell *_cell, const char *str)
setDateCellValue (BasicCell *_cell, const char *str)
{
DateCell *cell = (DateCell *) _cell;
char buff[30];