sheet.c (gnumeric-1.12.49.tar.xz) | : | sheet.c (gnumeric-1.12.50.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 5494 | skipping to change at line 5494 | |||
return FALSE; | return FALSE; | |||
} | } | |||
/** | /** | |||
* sheet_insert_cols: | * sheet_insert_cols: | |||
* @sheet: #Sheet | * @sheet: #Sheet | |||
* @col: At which position we want to insert | * @col: At which position we want to insert | |||
* @count: The number of columns to be inserted | * @count: The number of columns to be inserted | |||
* @pundo: (out): (transfer full): (allow-none): undo closure | * @pundo: (out): (transfer full): (allow-none): undo closure | |||
* @cc: | * @cc: The command context | |||
**/ | **/ | |||
gboolean | gboolean | |||
sheet_insert_cols (Sheet *sheet, int col, int count, | sheet_insert_cols (Sheet *sheet, int col, int count, | |||
GOUndo **pundo, GOCmdContext *cc) | GOUndo **pundo, GOCmdContext *cc) | |||
{ | { | |||
return sheet_insdel_colrow (sheet, col, count, pundo, cc, | return sheet_insdel_colrow (sheet, col, count, pundo, cc, | |||
TRUE, TRUE, | TRUE, TRUE, | |||
_("Insert Columns"), | _("Insert Columns"), | |||
sheet_delete_cols); | sheet_delete_cols); | |||
} | } | |||
skipping to change at line 5580 | skipping to change at line 5580 | |||
sheet_cell_remove_from_hash (iter->pp.sheet, cell); | sheet_cell_remove_from_hash (iter->pp.sheet, cell); | |||
*l = g_list_prepend (*l, cell); | *l = g_list_prepend (*l, cell); | |||
if (needs_recalc) | if (needs_recalc) | |||
cell->base.flags |= DEPENDENT_NEEDS_RECALC; | cell->base.flags |= DEPENDENT_NEEDS_RECALC; | |||
return NULL; | return NULL; | |||
} | } | |||
/** | /** | |||
* sheet_move_range: | * sheet_move_range: | |||
* @cc: | * @cc: The command context | |||
* @rinfo: | * @rinfo: | |||
* @pundo: (out) (optional) (transfer full): undo object | * @pundo: (out) (optional) (transfer full): undo object | |||
* | * | |||
* Move a range as specified in @rinfo report warnings to @cc. | * Move a range as specified in @rinfo report warnings to @cc. | |||
* if @pundo is non-%NULL, invalidate references to the | * if @pundo is non-%NULL, invalidate references to the | |||
* target region that are being cleared, and store the undo information | * target region that are being cleared, and store the undo information | |||
* in @pundo. If it is %NULL do NOT INVALIDATE. | * in @pundo. If it is %NULL do NOT INVALIDATE. | |||
**/ | **/ | |||
void | void | |||
sheet_move_range (GnmExprRelocateInfo const *rinfo, | sheet_move_range (GnmExprRelocateInfo const *rinfo, | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |