mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Fix up whitespace in dialog-transfer.c.
This commit is contained in:
parent
47f91c0227
commit
407d61cbb6
@ -69,24 +69,23 @@ static QofLogModule log_module = GNC_MOD_GUI;
|
|||||||
|
|
||||||
struct _xferDialog
|
struct _xferDialog
|
||||||
{
|
{
|
||||||
GtkWidget * dialog;
|
GtkWidget *dialog;
|
||||||
|
GtkWidget *amount_edit;
|
||||||
|
GtkWidget *date_entry;
|
||||||
|
GtkWidget *num_entry;
|
||||||
|
GtkWidget *description_entry;
|
||||||
|
GtkWidget *memo_entry;
|
||||||
|
GtkWidget *conv_forward;
|
||||||
|
GtkWidget *conv_reverse;
|
||||||
|
|
||||||
GtkWidget * amount_edit;
|
GtkWidget *from_window;
|
||||||
GtkWidget * date_entry;
|
|
||||||
GtkWidget * num_entry;
|
|
||||||
GtkWidget * description_entry;
|
|
||||||
GtkWidget * memo_entry;
|
|
||||||
GtkWidget * conv_forward;
|
|
||||||
GtkWidget * conv_reverse;
|
|
||||||
|
|
||||||
GtkWidget * from_window;
|
|
||||||
GtkTreeView * from_tree_view;
|
GtkTreeView * from_tree_view;
|
||||||
gnc_commodity * from_commodity;
|
gnc_commodity *from_commodity;
|
||||||
GtkWidget * to_window;
|
GtkWidget *to_window;
|
||||||
GtkTreeView * to_tree_view;
|
GtkTreeView *to_tree_view;
|
||||||
gnc_commodity * to_commodity;
|
gnc_commodity *to_commodity;
|
||||||
|
|
||||||
QuickFill * qf; /* Quickfill on transfer descriptions,
|
QuickFill *qf; /* Quickfill on transfer descriptions,
|
||||||
defaults to matching on the "From" account. */
|
defaults to matching on the "From" account. */
|
||||||
|
|
||||||
XferDirection quickfill; /* direction match on the account instead. */
|
XferDirection quickfill; /* direction match on the account instead. */
|
||||||
@ -96,34 +95,34 @@ struct _xferDialog
|
|||||||
gint desc_end_selection;
|
gint desc_end_selection;
|
||||||
guint desc_selection_source_id;
|
guint desc_selection_source_id;
|
||||||
|
|
||||||
GtkWidget * transferinfo_label;
|
GtkWidget *transferinfo_label;
|
||||||
|
|
||||||
GtkWidget * from_transfer_label;
|
GtkWidget *from_transfer_label;
|
||||||
GtkWidget * to_transfer_label;
|
GtkWidget *to_transfer_label;
|
||||||
|
|
||||||
GtkWidget * from_currency_label;
|
GtkWidget *from_currency_label;
|
||||||
GtkWidget * to_currency_label;
|
GtkWidget *to_currency_label;
|
||||||
|
|
||||||
GtkWidget * from_show_button;
|
GtkWidget *from_show_button;
|
||||||
GtkWidget * to_show_button;
|
GtkWidget *to_show_button;
|
||||||
|
|
||||||
GtkWidget * curr_xfer_table;
|
GtkWidget *curr_xfer_table;
|
||||||
|
|
||||||
GtkWidget * price_edit;
|
GtkWidget *price_edit;
|
||||||
GtkWidget * to_amount_edit;
|
GtkWidget *to_amount_edit;
|
||||||
|
|
||||||
GtkWidget * price_radio;
|
GtkWidget *price_radio;
|
||||||
GtkWidget * amount_radio;
|
GtkWidget *amount_radio;
|
||||||
|
|
||||||
GtkWidget * fetch_button;
|
GtkWidget *fetch_button;
|
||||||
|
|
||||||
QofBook * book;
|
QofBook *book;
|
||||||
GNCPriceDB * pricedb;
|
GNCPriceDB *pricedb;
|
||||||
|
|
||||||
/* Where to store the "exchange_rate" at exit (in lieu of
|
/* Where to store the "exchange_rate" at exit (in lieu of
|
||||||
* creating a transaction)
|
* creating a transaction)
|
||||||
*/
|
*/
|
||||||
gnc_numeric * exch_rate;
|
gnc_numeric *exch_rate;
|
||||||
|
|
||||||
/* Callback function to notify of the newly created Transaction */
|
/* Callback function to notify of the newly created Transaction */
|
||||||
gnc_xfer_dialog_cb transaction_cb;
|
gnc_xfer_dialog_cb transaction_cb;
|
||||||
|
Loading…
Reference in New Issue
Block a user