From 8a639f46738d2035567dd58884f940069721a27c Mon Sep 17 00:00:00 2001 From: Dave Peticolas Date: Mon, 23 Apr 2001 07:34:50 +0000 Subject: [PATCH] Use type conversion macro instead of cast. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4018 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome/window-reconcile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gnome/window-reconcile.c b/src/gnome/window-reconcile.c index 0b35a30cc0..3d90b496e5 100644 --- a/src/gnome/window-reconcile.c +++ b/src/gnome/window-reconcile.c @@ -443,7 +443,7 @@ startRecnWindow(GtkWidget *parent, Account *account, * until the user is done with the dialog box. */ cb_data.account = account; - cb_data.gae = (GNCAmountEdit *)end_value; + cb_data.gae = GNC_AMOUNT_EDIT (end_value); /* need to get a callback on date changes to update the recn balance */ gtk_signal_connect ( GTK_OBJECT (date_value), "date_changed",