Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DESKTOP-U434MT0\hiro committed Oct 11, 2024
1 parent 3980c4d commit cfc86ea
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/structs/worksheet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1578,7 +1578,13 @@ impl Worksheet {
}

// Moving or copying a section of the sheet
fn move_or_copy_range(&mut self, range: &str, row: &i32, column: &i32, is_move: bool) -> &mut Self {
fn move_or_copy_range(
&mut self,
range: &str,
row: &i32,
column: &i32,
is_move: bool,
) -> &mut Self {
// Check to ensure coordinates to move are within range (eg: moving A1 cells to the left is
// impossible)
let range_upper = range.to_uppercase();
Expand Down

0 comments on commit cfc86ea

Please sign in to comment.