2002-11-24 Derek Atkins <derek@ihtfp.com>

* src/engine/Account.c -- fix some compiler warnings
	* src/gnome/window-register.c -- fix a compiler warning
	* src/gnome/dialog-scheduledxaction.c -- fix a compiler warning


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7538 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2002-11-24 17:23:57 +00:00
parent 000de90d57
commit 4ec84856c5
4 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2002-11-24 Derek Atkins <derek@ihtfp.com>
* src/engine/Account.c -- fix some compiler warnings
* src/gnome/window-register.c -- fix a compiler warning
* src/gnome/dialog-scheduledxaction.c -- fix a compiler warning
2002-11-24 David Hampton <hampton@employees.org> 2002-11-24 David Hampton <hampton@employees.org>
* src/app-file/gncmod-app-file.c: * src/app-file/gncmod-app-file.c:

View File

@ -1248,8 +1248,7 @@ xaccAccountFixSplitDateOrder (Account * acc, Split *split)
void void
xaccTransFixSplitDateOrder (Transaction *trans) xaccTransFixSplitDateOrder (Transaction *trans)
{ {
GList *node, *next; GList *node;
static int level = 0;
if (trans == NULL) return; if (trans == NULL) return;

View File

@ -1811,7 +1811,7 @@ putSchedXactionInDialog( gpointer data, gpointer user_data )
GString *nextDate; GString *nextDate;
gint row; gint row;
int i; int i;
GDate *nextInstDate, *calEndDate; GDate *nextInstDate = NULL, *calEndDate;
int instArraySize; int instArraySize;
GDate **instArray; GDate **instArray;
GList *instList; GList *instList;

View File

@ -124,7 +124,7 @@ gnc_RegWindow_set_pcd (RegWindow *data, gpointer pcd)
/* This static indicates the debugging module that this .o belongs to. */ /* This static indicates the debugging module that this .o belongs to. */
/* static short module = MOD_GUI; */ /* static short module = MOD_GUI; */
static short module = MOD_SX; /* for the moment... */ //static short module = MOD_SX; /* for the moment... */
static int last_width = 0; static int last_width = 0;
static int last_stock_width = 0; static int last_stock_width = 0;