Replace tabs with spaces in a couple of source files

This commit is contained in:
Robert Fewell 2017-12-29 10:35:49 +00:00
parent f00f7335b7
commit 2f2d1b68ba
4 changed files with 61 additions and 63 deletions

View File

@ -1337,15 +1337,15 @@ gnc_split_reg_duplicate_trans_cb(GtkWidget *w, gpointer data)
void
gsr_default_schedule_handler( GNCSplitReg *gsr, gpointer data )
{
GncGUID *fromSXId = NULL;
SchedXaction *theSX = NULL;
GList *sxElts;
SplitRegister *reg = gnc_ledger_display_get_split_register( gsr->ledger );
Transaction *pending_trans = gnc_split_register_get_current_trans (reg);
/* If the transaction has a sched-xact KVP frame, then go to the editor
* for the existing SX; otherwise, do the sx-from-trans dialog. */
{
GncGUID *fromSXId = NULL;
SchedXaction *theSX = NULL;
GList *sxElts;
qof_instance_get (QOF_INSTANCE (pending_trans),
"from-sched-xaction", &fromSXId,
NULL);
@ -1366,8 +1366,6 @@ gsr_default_schedule_handler( GNCSplitReg *gsr, gpointer data )
gnc_ui_scheduled_xaction_editor_dialog_create(theSX, FALSE);
return;
}
}
gnc_sx_create_from_trans(pending_trans);
}